:root {
    /* Body */
    --body-bg: #f8fafc;

    /* Typography */
    --font-family-sans-serif: "Nunito Sans", sans-serif;
    --font-size-base: 0.9rem;
    --line-height-base: 1.6;
    --primary: #FF6900;
    --primary-dark: #6063c0;
}

/* Body */
body {
    background-color: var(--body-bg);
    font-family: var(--font-family-sans-serif);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.fa-eye,
.fa-eye-slash {
    color: var(--primary);
}

/* Buttons
.btn-primary {
    background-color: var(--primary) !important;
    color: white !important;
} */
button:hover,
button:active,
button:focus {
    background-color: var(--primary-dark) !important;
}

/* Links */
a:hover,
a:active,
a:focus {
    color: var(--primary-dark) !important;
}

/* Typography */
.title {
    font-size: 3rem;
}
.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
}

.fw-900 {
    font-weight: 900 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.form-label {
    font-size: 1.1rem !important;
    font-weight: 500;
    text-transform: none !important;
}

.form-label-small {
    font-size: 1rem !important;
    font-weight: 500;
    text-transform: none !important;
}

.text-primary {
    color: var(--primary) !important;
}

/* Form Controls */
.form-control {
    padding: calc(0.8555rem - 1px) calc(1rem - 1px);
    display: block !important;
    font-size: 0.9375rem !important;
    font-weight: 400 !important;
    line-height: 1.375 !important;
    color: #433c50 !important;
    appearance: none !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 1px solid #d1cfd4 !important;
    border-radius: 0.375rem !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}
.form-control:focus {
    /* border-color: #8c57ff !important; */
    color: #433c50 !important;
    background-color: rgba(0, 0, 0, 0) !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-width: 2px !important;
    padding: calc(0.8555rem - 2px) calc(1rem - 2px) !important;
}

/* Input Group */
.input-group-text {
    border: 1px solid #d1cfd4;
}
.input-group:not(.input-group-floating):focus-within .form-control,
.input-group:not(.input-group-floating):focus-within .input-group-text {
    border-width: 2px !important;
    /* border-color: #8c57ff; */
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}
.input-group-merge input {
    border-right: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.input-group-merge .input-group-text {
    border-left: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

span.cursor-pointer.input-group-text {
    background-color: rgba(0, 0, 0, 0) !important;
}

/* Background */
.bg-right {
    background-image: url("../img/login-bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #282828d0;
    z-index: 1;
}
.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    height: 100%; /* Ensure it takes full height */
}

.position-absolute {
    position: absolute; /* Make the image position absolute */
    top: 20px; /* Adjust this value as needed */
    left: 10px; /* Adjust this value as needed */
}

/* Misc */
.mw-25 {
    max-width: 23% !important;
}

.logo-light {
    max-height: 12%;
    width: auto;
}
.mw-50 {
    max-width: 50% !important;
}
.book-form {
    display: flex;
    flex-direction: column;
}

.book-form button {
    margin-top: 1rem; /* Optional: Adds space above the button */
}

/* Media Queries */
@media screen and (min-width: 768px) {
    .login-form {
        max-width: 70% !important;
    }
    .login-height {
        height: 100vh !important;
    }
    .top-height {
        height: 100vh !important;
    }
}
@media screen and (max-width: 768px) {
    .login-form {
        max-width: 85% !important;
    }
    .title {
        font-size: 8vw !important;
    }
    .subtitle {
        font-size: 4vw !important;
    }
    .login-height {
        height: 100% !important;
    }
    .top-height {
        min-height: 500px !important;
    }
}
@media (max-width: 480px) {
    .title {
        font-size: 10vw !important;
    }
    .subtitle {
        font-size: 5vw !important;
    }
    .login-height {
        height: 100% !important;
    }
    .top-height {
        min-height: 450px !important;
    }
    .logo-light {
        max-height: 16%;
        width: auto;
    }
}
