/* ===== Login Page Styling ===== */
/* ===== Login Background & Overlay ===== */
.login-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top :120px;
    padding-bottom: 60px;
}

/* Overlay for contrast */
.login-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(10, 19, 21, 0.475); /* Deep blue overlay */
    z-index: 1;
}

/* Ensures login content stays above overlay */
.login-section .container {
    position: relative;
    z-index: 2;
}


.login-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.login-card h3 {
    color: #014e64;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

/* Input fields */
.login-form .input__group {
    margin-bottom: 20px;
}

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

.login-form input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

.login-form input:focus {
    border-color: #00a6d3;
    outline: none;
}

/* Field error display */
.field-error {
    color: rgb(51, 9, 9);
    font-size: 13px;
    display: block;
    margin-top: 5px;
}

/* Checkbox row */
.item-text label {
    margin-left: 8px;
    font-size: 14px;
    color: #63636e;
}

/* Forgot password link */
.item-text a {
    font-size: 14px;
    color: #00a6d3;
    text-decoration: underline;
}

/* Button style from your theme */
.theme-btn.blue {
    background-color: #00a6d3;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.theme-btn.blue:hover {
    background-color: #028fb5;
}

/* Hover shapes (optional animations) */
.theme-btn .hover-shape1,
.theme-btn .hover-shape2,
.theme-btn .hover-shape3 {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    animation: float 6s infinite ease-in-out;
    pointer-events: none;
}

.theme-btn .hover-shape1 {
    width: 30px;
    height: 30px;
    top: -10px;
    left: 20%;
}

.theme-btn .hover-shape2 {
    width: 20px;
    height: 20px;
    bottom: -10px;
    right: 25%;
}

.theme-btn .hover-shape3 {
    width: 25px;
    height: 25px;
    top: 40%;
    left: -15px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-card {
        padding: 30px 20px;
    }

    .login-form input {
        font-size: 14px;
    }

    .theme-btn.blue {
        font-size: 15px;
    }
}


.register-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(10, 19, 21, 0.475); /* Deep blue overlay */
    z-index: 1;
}

.register-section .container {
    position: relative;
    z-index: 2;
}

.register-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
}

.registration-form input,
.registration-form select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.registration-form input:focus,
.registration-form select:focus {
    border-color: #00a6d3;
    outline: none;
}

/* Styling for the bottom section */
.item-bottom {
    margin-top: 30px; /* Adjust margin from the top */
    text-align: center; /* Center the content */
}

/* Styling for the heading text */
.item-bottom h4 {
    font-size: 16px; /* Set font size for readability */
    color: #333; /* Set a neutral color for the text */
    font-weight: normal; /* Make the heading text normal weight */
    line-height: 1.5; /* Improve line spacing */
}

/* Styling for the link */
.item-bottom a {
    color: #264d99; /* Match the link color to your theme */
    text-decoration: none; /* Remove underline from the link */
    font-weight: bold; /* Make the link stand out */
    transition: color 0.3s ease; /* Smooth transition on hover */
}

/* Hover effect for the link */
.item-bottom a:hover {
    color: #325396; /* Lighter shade for the link on hover */
    text-decoration: underline; /* Add underline on hover */
}



.terms-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.terms-content {
    height: 200px;
    overflow-y: auto;
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    background-color: white;
    line-height: 1.6;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start; /* Changed to flex-start for better alignment */
    gap: 12px;
    margin-bottom: 15px;
}

.terms-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #007bff;
    margin-top: 3px; /* Added for perfect vertical alignment */
}

.terms-checkbox label {
    font-size: 16px;
    color: #333;
    line-height: 1.4; /* Added for better text alignment */
}

.terms-checkbox a {
    color: #007bff;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}



@media (max-width: 768px) {
    .terms-container {
        margin: 15px;
        padding: 20px;
    }
    
    .terms-checkbox {
        gap: 10px;
    }
}






/* OTP Section Styling */
.otp-section {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.otp-field {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    max-width: 340px;
}

.otp-field input {
    width: 40px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    background-color: #f9f9f9;
}

.otp-field input:focus {
    border-color: #00a6d3;
    background-color: #fff;
}

.otp-field input.space {
    width: 50px; /* Adds extra space between inputs */
}

.item-button button.theme-btn.blue {
    background-color: #00a6d3;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

.item-button button.theme-btn.blue:hover {
    background-color: #028fb5;
}

.item-bottom h4 a {
    color: #00a6d3;
    text-decoration: underline;
}

.item-bottom h4 a:hover {
    color: #028fb5;
}


/* Form Inputs */
.input__group {
    margin-bottom: 23px;
}

.input__group label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.input__group input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.input__group input:focus {
    border-color: #014e64;
    box-shadow: 0 0 5px rgba(1, 78, 100, 0.3);
}

/* Checkbox and links */
.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.d-flex .item-text {
    font-size: 14px;
    color: #014e64;
}

.d-flex .item-text a {
    color: #00a6d3;
    text-decoration: underline;
}

.d-flex .item-text a:hover {
    text-decoration: none;
}

/* Button Styling */
.theme-btn.blue {
    background-color: #00a6d3;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.theme-btn.blue:hover {
    background-color: #014e64;
}

/* Text below form */
.text-center {
    color: #014e64;
}

.text-center a {
    color: #00a6d3;
    text-decoration: underline;
}

.text-center a:hover {
    color: #014e64;
    text-decoration: none;
}

/* Responsiveness */
@media (max-width: 768px) {
    .verify-card {
        padding: 20px;
    }

    .verify-email-section {
        padding: 20px 0;
    }
}
