/* Make the full container occupy the viewport height */
.container-fluid {
    height: 100vh;
}

/* Back Arrow Styling */
.back-arrow {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    color: black;
    text-decoration: none;
    z-index: 10;
}

.back-arrow:hover {
    color: rgb(12, 53, 12); /* Bootstrap Primary Blue */
}

/* Left Side Styling */
.left-side {
    background-color: #f8f9fa; /* Light gray background */
    padding: 30px;
    text-align: center;
}

/* Right Side - Responsive Image */
.right-side {
    position: relative;
}

.right-side img {
    width: 100%;
    height: 100vh;
    object-fit: cover; /* Ensures image covers the full area */
}

/* Overlay Text */
.overlay-text {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    width: 80%;
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
    .left-side {
        padding: 40px;
    }

    .right-side img {
        height: 50vh; /* Adjusts height on smaller screens */
    }

    .overlay-text {
        top: 5%;
        width: 90%;
        font-size: 14px;
    }

    /* Responsive Back Arrow */
    .back-arrow {
        font-size: 20px;
        top: 10px;
        left: 10px;
    }
}
/* Full-screen container */
.container-fluid {
    height: 100vh;
}

/* Back Arrow Styling */
.back-arrow {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    color: black;
    text-decoration: none;
    z-index: 10;
}

.back-arrow:hover {
    color: #007bff; /* Bootstrap Primary Blue */
}

/* Left Side Styling */
.left-side {
    background-color: #f8f9fa; /* Light gray background */
    padding: 30px;
}

.form-container {
    width: 80%;
    max-width: 400px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Right Side - Responsive Image */
.right-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-side img {
    width: 100%;
    height: 100vh;
    object-fit: cover; /* Ensures image covers the full area */
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
    .form-container {
        width: 100%;
        max-width: 350px;
    }

    .right-side img {
        height: 50vh; /* Adjusts height on smaller screens */
    }

    .back-arrow {
        font-size: 20px;
        top: 10px;
        left: 10px;
    }
}
/* Centering the OTP Container */
.otp-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* OTP Title */
.otp-title {
    font-size: 28px;
    font-weight: bold;
    color: rgb(12, 53, 12);
    ;
    margin-bottom: 10px;
}

/* OTP Email Styling */
.otp-email {
    font-size: 16px;
    color: #333;
}

/* OTP Input Box */
.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.otp-box {
    width: 40px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 2px solid rgb(12, 53, 12);
    ;
    border-radius: 5px;
    outline: none;
}

/* Timer Styling */
.otp-timer {
    color: rgb(12, 53, 12);
    ;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Continue Button */
.btn-continue {
    background-color: #7D0C0C;
    color: white;
    font-size: 18px;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.btn-continue:hover {
    background-color: #5A0A0A;
}

/* Responsive Styling */
@media (max-width: 400px) {
    .otp-box {
        width: 35px;
        height: 45px;
        font-size: 20px;
    }
}
/* Full Page Styling */
body {
    background-color: #f8f9fa;
}

/* OTP Container */
.otp-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* OTP Title */
.otp-title {
    font-size: 28px;
    font-weight: bold;
    color: #7D0C0C;
    margin-bottom: 10px;
}

/* OTP Email Styling */
.otp-email {
    font-size: 16px;
    color: #333;
}

/* OTP Input Box */
.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.otp-box {
    width: 40px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #7D0C0C;
    border-radius: 5px;
    outline: none;
}

/* Timer Styling */
.otp-timer {
    color: #7D0C0C;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Continue Button */
.btn-continue {
    background-color: #7D0C0C;
    color: white;
    font-size: 18px;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.btn-continue:hover {
    background-color: #5A0A0A;
}

/* Image Section */
.image-section {
    background-color: #7D0C0C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .image-section {
        display: none;
    }
    .form-section {
        width: 100%;
    }
}
/* Full Page Styling */
body {
    background-color: #f8f9fa;
}

/* Form Container */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* Logo */
.logo {
    width: 150px;
    margin-bottom: 10px;
}

/* Title & Subtitle */
.title {
    font-size: 28px;
    font-weight: bold;
    color: rgb(145, 19, 19);
    text-align: center;
}

.subtitle {
    font-size: 14px;
    text-align: center;
    color: #666;
}

/* Input Fields */
.form-control {
    height: 45px;
    font-size: 16px;
    border-radius: 5px;
}

/* Checkbox Label */
.form-check-label {
    font-size: 13px;
    color: #333;
}

/* Sign Up Button */
.btn-primary {
    background-color: rgb(12, 53, 12);
    border: none;
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: rgb(12, 53, 12);
}

/* Google Sign-up Button */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    padding: 10px;
    margin-top: 10px;
}

.google-btn img {
    width: 20px;
}

/* Login Link */
.login-link {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

.login-link a {
    color: rgb(12, 53, 12);
    ;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Image Section */
.image-section {
    background-color: rgb(247, 244, 244);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .image-section {
        display: none;
    }
    .form-section {
        width: 100%;
    }
}
/* form group*/

.input-group .input-group-text {
    background-color: #fff;
    border-right: none;
}