
body.booking-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}

.booking-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 40px;
    flex: 1;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 60px 50px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-wrapper h1 {
    font-family: Georgia, serif;
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-wrapper p {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 40px;
    line-height: 1.6;
}

.stylist-form { 
    display: flex; 
    flex-direction: column; 
    gap: 25px; 
}

.input-group input, 
.input-group select {
    width: 100%; 
    background: transparent; 
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff; 
    padding: 10px 5px; 
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem; 
    transition: 0.3s; 
}

.input-group select { 
    appearance: none; 
    cursor: pointer; 
    opacity: 0.8; 
}

.input-group select option { 
    background: #6d5854; 
    color: #fff; 
}

.input-group input:focus, 
.input-group select:focus { 
    border-bottom-color: #fff; 
    opacity: 1; 
}

.input-group input::placeholder { 
    color: rgba(255, 255, 255, 0.4); 
}

.submit-btn {
    margin-top: 20px; 
    background: transparent; 
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5); 
    padding: 16px 30px;
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    border-radius: 30px; 
    cursor: pointer; 
    transition: 0.3s ease;
}

.submit-btn:hover { 
    background: #fff; 
    color: #6d5854; 
}


/* Адаптив для планшетов */
@media (max-width: 1024px) {
    .form-wrapper {
        width: 600px;
        padding: 50px 40px;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}


@media (max-width: 600px) {
    .form-wrapper {
        width: 100%;
        max-width: 500px;
        padding: 40px 20px;
    }

    .form-wrapper h1 {
        font-size: 1.6rem;
    }
}
