@charset "UTF-8";

.custom-fieldset {
    border: 1px solid #e0c5c7;
    border-radius: 8px;
    padding: 25px;
    background-color: #fffafb;
    margin-bottom: 20px;
}

.custom-fieldset legend {
    color: #b56a6f;
    font-weight: bold;
    font-size: 1.1em;
    padding: 0 10px;
}

label {
    display: block;
    margin-top: 15px;
    color: #6a5d5d;
    font-size: 0.95em;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #e0c5c7;
    border-radius: 6px;
    font-family: inherit;
    color: #4a4a4a;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
    transform: scale(1.1);
}

input:focus,
select:focus,
textarea:focus {
    background-color: #ffffff;
    border-color: #b56a6f;
    outline: none;
    box-shadow: 0px 0px 5px rgba(181, 106, 111, 0.2);
}

.submit-btn {
    background-color: #b56a6f;
    color: white;
    padding: 12px 30px;
    font-size: 1.1em;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #9c555a;
}

.promo-btn {
    display: inline-block;
    text-decoration: none; 
    background-color: #b56a6f; 
    color: white; 
    padding: 12px 30px; 
    font-size: 1.1em; 
    border-radius: 25px; 
    transition: background-color 0.3s ease; 
}

.promo-btn:hover {
    background-color: #9c555a; 
}

.option-box {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #e0c5c7;
    border-radius: 6px;
}

.form-actions {
    text-align: center;
    margin-top: 10px;
}

.order-promo {
    text-align: center;
    margin-top: 10px;
}