@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: white;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Cool Header Styles */
.cool-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    text-decoration: none;
}

.header-logo img {
    height: 40px;
}

.header-links a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    margin-left: 30px;
}

.header-links a:hover {
    color: #0f3dde;
}

/* Split-Screen Container */
.auth-container {
    min-height: 100vh;
    display: flex;
}

.form-section {
    flex: 1;
    padding: 120px 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-wrapper {
    max-width: 450px;
    width: 100%;
}

.auth-heading {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
}

.auth-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-bottom: 40px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    height: 45px;
    border-radius: 12px;
    border: 1px solid #d9d9d9;
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-control:focus {
    border-color: #0f3dde;
    box-shadow: 0 0 0 4px rgba(15, 61, 222, 0.1);
    outline: none;
}

/* Booking Row Layout */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-check {
    margin-top: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.form-check-input {
    border: 1px solid #000;
    border-radius: 4px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #0f3dde;
    border-color: #0f3dde;
}

.form-check-label {
    font-size: 12px;
    font-weight: 500;
    color: #000;
    margin-left: 8px;
    cursor: pointer;
}

.form-check-label a {
    text-decoration: underline;
    color: #000;
}

.btn-primary-blue {
    width: 100%;
    height: 45px;
    background-color: #0f3dde;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-blue:hover {
    background-color: #0c2fba;
    transform: translateY(-2px);
}

.btn-primary-blue:active {
    transform: translateY(0);
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #eee;
}

.divider span {
    background-color: white;
    padding: 0 15px;
    position: relative;
    font-size: 12px;
    font-weight: 500;
    color: #888;
}

.social-btn-container {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-btn {
    flex: 1;
    height: 45px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.bottom-text {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-top: 20px;
}

.bottom-text a {
    color: #0f3dde;
    text-decoration: none;
    font-weight: 600;
}

.image-section {
    flex: 1;
    background: url('../assets/img/auth/auth_bg.jpg') center/cover no-repeat;
    border-bottom-left-radius: 45px;
    border-top-left-radius: 45px;
    min-height: 100vh;
    position: sticky;
    top: 0;
}

/* Custom styles for Booking page within the split-screen */
.booking-form-wrapper {
    max-width: 600px !important;
}

@media (max-width: 1200px) {
    .cool-header {
        padding: 20px 40px;
    }
}

@media (max-width: 991px) {
    .image-section {
        display: none;
    }

    .form-section {
        padding: 100px 20px;
    }

    .cool-header {
        padding: 15px 20px;
    }
}