* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.signin-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    overflow: hidden;
}

.signin-image {
    width: 48%;
    overflow: hidden;
}

.signin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
}

.signin-form {
    width: 52%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.signin-box {
    width: 100%;
    max-width: 480px;
}

.role-card {
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background-color: #fff;
    text-align: center;
}

.role-card:hover {
    border-color: #00A99D;
    transform: translateY(-2px);
}

.role-card.active {
    border-color: #00A99D;
}



.role-card.active .role-icon,
.role-card.active h6 {
    color: #00A99D;
}


.checkmark {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #0b8b83;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    display: none;
    align-items: center;
    justify-content: center;
}

.role-card.active .checkmark {
    display: flex;
}

.input-group-text {
    border-radius: 10px 0 0 10px !important;
    background-color: #f6f6f6 !important;
}

.form-control {
    border-radius: 0 10px 10px 0 !important;
    background-color: #f6f6f6;
    border-color: #e0e0e0;
}

.form-control:focus {
    box-shadow: none !important;
    border-color: #e0e0e0 !important;
    outline: none !important;
    background-color: #f6f6f6 !important;
}

.btn-teal {
    background-color: #00A99D;
    color: #fff;
    border: none;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-teal:hover,
.btn-teal:focus {
    background-color: #00A99D;
    color: #ffffff;
}

.text-primary {
    color: #00A99D !important;
}

.form-check-label {
    font-size: 15px;
}

/* ✅ Responsive Fixes */
@media (max-width: 992px) {
    .signin-image {
        display: none;
    }

    .signin-form {
        width: 100%;
        box-shadow: none;
        padding: 40px 20px;
    }

    .signin-box {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 26px;
    }

    .role-card {
        padding: 12px;
    }

    .role-icon {
        font-size: 22px;
    }

    .checkmark {
        top: 6px;
        right: 8px;
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .signin-form {
        padding: 20px;
    }

    .signin-box {
        padding: 10px;
    }

    .row.g-3.mb-4 {
        row-gap: 12px;
    }
}

/* Sign in Page Ends */

.reset-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 0 20px;
}

.reset-box {
    text-align: center;
    width: 500px;
    background-color: #fff;
}

.icon-box {
    width: 64px;
    height: 64px;
    background-color: #e9fdf4;
    color: #21c58d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.reset-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    line-height: 48px;
    letter-spacing: 0px;
    margin-bottom: 8px;
}

.reset-box p {
    color: #4A5565;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    letter-spacing: 0px;
}

.security-tip {
    background: #F0FDF4;
    border: 1px solid #B9F8CF;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin: 80px 0 0 0;
    text-align: left;
}

.security-tip svg {
    margin-top: -7px;
}

.tip-text h4 {
    font-size: 16px;
    color: #016630;
    font-weight: 600;
    line-height: 21px;
}

.tip-text p {
    font-size: 14px;
    font-weight: 400;
    color: #008236;
    margin-top: 4px;
    line-height: 20px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sign-in-btn {
    background-color: #00A99D;
    color: #ffffff;
    border: none;
    box-shadow: 0px 4px 6px -4px #00A99D33;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0px;
    transition: 1s;
}

.sign-in-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.dashboard-btn {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #E5E7EB;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0px;
    transition: 1s;
}

.dashboard-btn:hover {
    background-color: #00A99D;
    color: #ffffff;
}

.help-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 21;
    letter-spacing: 0;
    text-align: center;
    color: #4A5565;
    margin-top: 20px;

}

.help-text a {
    color: #00A99D;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    font-weight: 500;
}

/* Password Reset Successful ends  */

/* Set New Password Start */
.set-password-section {
    min-height: 100vh;
}

.set-password-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.set-password-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
}

.set-password-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #4A5565;
}

.set-password-input-group .form-label {
    font-size: 14px;
    color: #222;
}

.set-password-input {
    font-size: 14px;
    padding: 10px 12px;
    border-left: none;
    border-right: none;
}

.input-group-text {
    border: 1px solid #ddd;
    border-radius: 8px;
}

.input-group-text i {
    color: #888;
}

.set-password-rules {
    background-color: #f7f9fa;
    border: 1px solid #e3e6e8;
}

.set-password-rules li {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

.set-password-btn {
    background-color: #00A99D;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    box-shadow: 0px 4px 6px -4px #00A99D33;
}

.set-password-btn:hover {
    background-color: #00A99D;
    color: #ffffff;
}

.progress-bar {
    transition: width 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .set-password-box {
        padding: 30px 20px;
    }
}

.set-password-input:focus,
.input-group-text:focus,
button:focus,
.btn:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #ddd !important;
    /* keep normal border */
}

/* Set New Password Ends */


/* Verifiy Email Page Start */

/* Center column */
.verify-wrap {
    max-width: 680px;
    margin: 20px auto;
    padding: 36px 28px 0;
    text-align: center;
}

/* circular envelope icon */
.icon-circle {
    width: 72px;
    height: 72px;
    margin: 0 auto 25px;
    background: rgba(126, 217, 211, 0.18);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.h1-verify {
    font-weight: 700;
    font-size: 32px;
    color: #000000;
}

.email-sub p {
    font-size: 16px;
    font-weight: 400;
    color: #4A5565;
}

.email-sub h6 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-top: -15px;
    margin-bottom: 25px;
}

/* verification input boxes */
.otp-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 12px 0 18px;
    flex-wrap: wrap;
}

.otp-inputs input {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #e8eaed;
    background: var(--input-bg);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.02);
    outline: none;
    transition: border-color .12s, transform .08s;
}

.otp-inputs input:focus {
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(94, 193, 184, 0.12);
}

.code-expire {
    color: #6b7b82;
    margin-bottom: 20px;
}

.code-expire span {
    color: #00A99D;
}

/* verify button */
.verify-btn {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 20px;
    padding: 14px 20px;
    border-radius: 12px;
    background: #00A99D;
    color: #fff;
    font-weight: 600;
    box-shadow: 0px 4px 6px -4px #00A99D33;

    border: none;
}

.verify-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

/* info box */
.info-box {
    background: #F9FAFB;
    border-radius: 10px;
    padding: 18px;
    color: #5d6b72;
    /* text-align: left; */
    max-width: 640px;
    margin: 12px auto 18px;
    box-shadow: 0 6px 18px rgba(10, 30, 30, 0.03);
}

.info-box p {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #4A5565;
}

.info-box ul li {
    text-align: left !important;
    font-size: 14px;
    font-weight: 400;
    color: #4A5565;
}

.back-signin {
    margin-top: 12px;
    color: #6b7b82;
    text-decoration: none;
}

/* responsive tweaks */
@media (max-width: 480px) {
    .h1-verify {
        font-size: 28px;
    }

    .otp-inputs input {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .verify-wrap {
        padding: 20px;
        margin-top: 28px;
    }
}

/* Verifiy Email Page Ends */


/* Forget password start */
.forget-password-page-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
}

.forget-password-card-like {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 100px;
    align-items: center;
    padding: 48px;
    box-sizing: border-box;
}

/* Left illustration */
.forget-password-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.forget-password-illustration img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 400px;
}

.forget-password-form-control:focus {
    border-color: #e7eaed !important;
    box-shadow: none !important;
    outline: none !important;
}

.forget-password-form a {
    text-decoration: none;
}

/* Right form column */
.forget-password-auth-panel {
    padding: 6px 8px;
}

.forget-password-back-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--muted-text);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
}

.forget-password-back-link svg {
    opacity: .8;
}

.forget-password-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.forget-password-subtitle {
    color: #4A5565;
    margin-bottom: 26px;
    line-height: 1.5;
}

.forget-password-form-control {
    border-radius: 10px;
    height: 48px;
    padding-left: 44px;
    border: 1px solid #e7eaed;
    background: #fff;
    box-shadow: none;
}

.forget-password-input-icon {
    position: relative;
}

.forget-password-input-icon .forget-password-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #8b9aa0;
    opacity: .9;
}

.forget-password-send-btn {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    color: #ffffff;
    background: #00A99D;
    box-shadow: 0px 4px 6px -4px #00A99D33;
    transition: transform .08s ease, box-shadow .12s ease;
}

.forget-password-send-btn:active {
    transform: translateY(1px);
}

.forget-password-note {
    margin-top: 18px;
    color: var(--muted-text);
    font-size: 14px;
}

/* Responsive: stack & center on smaller screens */
@media (max-width: 991.98px) {
    .forget-password-card-like {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .forget-password-illustration img {
        max-height: 360px;
    }

    .forget-password-auth-panel {
        max-width: 640px;
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .forget-password-title {
        font-size: 24px;
    }

    .forget-password-card-like {
        padding: 18px;
    }

    .forget-password-illustration img {
        max-height: 260px;
    }
}

/* Forget password Ends */