@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><pattern id="grain" x="0" y="0" width="2" height="2" patternUnits="userSpaceOnUse"><rect width="1" height="1" fill="rgba(15,47,87,0.02)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');

}

.container-wrapper {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.3px;
    margin-bottom: 15px;    
}

.container span {
    font-size: 12px;
    margin-bottom: 10px;
}

.container a {
    color: #0f2f57;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
}

.container button {
    background: #0f2f57;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 10px 30px;
    border: 1px solid transparent;
    margin: 10px;
    transition: all 0.3s ease;
}

.container button:hover {
    background: #0c2646;
    transition: all 0.5s ease;
}

.container button.hidden {
    background-color: transparent;
    border-color: #fff;
}

.container button.hidden:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.container form {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px 40px;
    height: 100%;
}

.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    margin: 0 0 0 0;
}

.container input {
    background-color: #fff;
    border: 1px solid #c9c9c9;
    color: #666;
    font-size: 13px;
    padding: 10px 40px 10px 15px;
    border-radius: 25px;
    width: 100%;
    outline: none;
    transition: background-color 0.3s ease;
}

.container input:focus {
    background-color: #fff;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-size: 16px;
    pointer-events: none;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #222;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.login {
    left: 0;
    width: 50%;
    z-index: 2;
}

.container.active .login {
    transform: translateX(100%);
}

.register {
    left: 0;
    width: 50%;
    z-index: 1;
    opacity: 0;
}

.container.active .register {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }
    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.toggle-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    border-radius: 150px 0 0 150px;
    z-index: 1000;
}

.container.active .toggle-container {
    transform: translateX(-100%);
    border-radius: 0 150px 150px 0;
}

.toggle {
    background: linear-gradient(to bottom, #0f2f57, #1a3f73, #598dba, #4caafc, #6bbaff);
    color: #fff;
    position: relative;
    left: -100%;    
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.container.active .toggle {
    transform: translateX(50%);
}

.toggle-panel {
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px 30px;
    text-align: center;
    top: 0;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.toggle-left {
    transform: translateX(-200%);
}

.container.active .toggle-left {
    transform: translateX(0);
}

.toggle-right {
    right: 0;
    transform: translateX(0);
}

.container.active .toggle-right {
    transform: translateX(200%);
}

.container h1 {
    margin: 0;
    font-size: 25px;
}

.logo {
    text-align: center;
}

.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    margin: 0;
}

.checkbox-wrapper input[type="checkbox"] {
    margin: 0;
    padding: 0;
    accent-color: #0c2646;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.checkbox-wrapper label {
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: #666;
    line-height: 1;
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    align-items: center;
    gap: 10px;
}

.mobile-toggle a {
    color: #000;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 5px !important;
}

.mobile-toggle-separator {
    color: #000;
    font-size: 12px;
    font-weight: 500;
}

.forgot-modal {
    display: none;
    position: fixed;
    z-index: 99998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 25;
}

.forgot-modal-content {
    background-color: #fff;
    margin: 0;
    padding: 0;
    border-radius: 25px;
    width: 85%;
    max-width: 450px;
    max-height: 90vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: forgotModalFadeIn 0.3s ease-out;
    border: 3px solid red; 
    z-index: 100000 !important;
}

#change-password-btn {
    border: 3px solid blue !important; 
    position: relative;
    z-index: 100001 !important; 
}

@keyframes forgotModalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.forgot-modal-header {
    background: linear-gradient(to right, #0f2f57, #1a3f73, #598dba, #4caafc, #6bbaff);
    color: white;
    padding: 20px 30px;
    position: relative;
}

.forgot-modal-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.forgot-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.forgot-modal-close:hover {
    transform: scale(1.2);
}

.forgot-modal-body {
    padding: 10px;
    max-height: 70vh;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.forgot-modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.forgot-password-step {
    display: none;
}

.forgot-password-step.active {
    display: block;
    width: 90%;
}

.forgot-input-container {
    margin: 15px 0;
}

.forgot-input-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.forgot-input-container input {
    width: 100%;
    color: #666;
    font-size: 13px;
    padding: 10px 40px 10px 15px;
    border-radius: 25px;
    border: 1px solid #c9c9c9;
    transition: border-color 0.3s ease;
    background-color: #fff;
    outline: none;
}

.forgot-password-btn {
    background: #0f2f57;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    margin: 10px auto;
}

.forgot-password-btn:hover {
    background: #0c2646;
    transition: all 0.5s ease;
}

.otp-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.otp-input {
    width: 40px !important;
    height: 40px;
    text-align: center;
    border: 2px solid #ddd !important;
    border-radius: 8px !important;
    font-size: 16px;
    font-weight: bold;
    padding: 0 !important;
}

.otp-input:focus {
    border-color: #003366 !important;
}

.success-message {
    text-align: center;
    color: #003366;
    margin: 20px 0;
}

.success-message i {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
    color: #28a745;
}

.success-message h3 {
    margin: 10px 0;
    color: #003366;
}

.forgot-modal-body h3 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.success-message span {
    font-size: 14px;
    margin-left: 10px;
}

@media screen and (max-width: 768px) {
    body { padding: 15px; }
    .container { width: 100%; max-width: 600px; border-radius: 30px; min-height: 450px; }
    .container form { padding: 0px 30px; }
    .container h1 { font-size: 24px; }
    .container span { font-size: 11px; }
    .toggle-container { border-radius: 120px 0 0 120px; }
    .container.active .toggle-container { border-radius: 0 120px 120px 0; }
    .toggle-panel { padding: 0px 20px; }
    .toggle-panel p { font-size: 13px; margin: 15px 0px; }
}

@media screen and (max-width: 615px) {
    .container h1 { font-size: 20px; }
}

@media screen and (max-width: 540px) {
    .container h1 { font-size: 18px; }
}

@media screen and (max-width: 500px) {
    body { padding: 10px; }
    .container { border-radius: 50px; min-height: 500px; width: 90%; max-width: 400px; }
    .form-container { position: relative; width: 100% !important; transform: none !important; opacity: 1 !important; z-index: 1 !important; }
    .login { position: relative; left: 0 !important; width: 100% !important; display: none; }
    .register { position: relative; left: 0 !important; width: 100% !important; }
    .container.mobile-login .login { display: block; }
    .container.mobile-login .register { display: none; }
    .toggle-container { display: none; }
    .mobile-toggle { display: flex; }
    .container form { padding: 15px; min-height: 410px; }
    .container h1 { font-size: 18px; margin-bottom: 3px; }
    .container p { font-size: 11px; margin: 10px 0px 10px 0px; }
    .container span { font-size: 10px; }
    .container input { font-size: 12px; padding: 10px 20px 10px 12px; margin: 3px 0px; }
    .input-container { margin: 1px; }
    .container button { font-size: 11px; padding: 10px 20px; margin: 3px 0px 1px; }
    .checkbox-wrapper { margin: 2px 0px; }
    .checkbox-wrapper label { font-size: 10px; }
    .password-strength { margin-top: -2px; }
}

.form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px; 
    width: 100%;
}

.input-container {
    margin: 0 0 0 0;
    width: 100%;
}

.container h1,
.container p,
.container span,
.social-icons,
.input-container,
.checkbox-wrapper,
.container button {
    margin-top: 0;
    margin-bottom: 0;
}

.social-icons {
    margin: 0 0 4px 0;
}

.input-container {
    margin: 0 0 4px 0;
}

.checkbox-wrapper {
    margin: 0 0 4px 0;
}

.container button {
    margin: 0 0 4px 0;
}

.container p {
    margin: 0 0 4px 0;
}

.container span {
    margin: 0 0 4px 0;
}

@media screen and (max-width: 500px) {
    .form-container form {
        gap: 3px;
    }
    .input-container,
    .checkbox-wrapper,
    .container button,
    .container p,
    .container span,
    .social-icons {
        margin-bottom: 2px;
    }
}

.terms-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.terms-modal-content {
    background-color: #fff;
    margin: 0;
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    max-height: 70vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: termsModalFadeIn 0.3s ease-out;
}

@keyframes termsModalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.terms-modal-header {
    background: linear-gradient(to right, #0f2f57, #1a3f73, #598dba, #4caafc, #6bbaff);
    color: white;
    padding: 20px 30px;
    position: relative;
}

.terms-modal-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.terms-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.terms-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.terms-modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.terms-modal-body h3 {
    color: #0f2f57;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.terms-modal-body h3:first-child {
    margin-top: 0;
}

.terms-modal-body p {
    margin-bottom: 15px;
    font-size: 12px;
}

.terms-modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
    font-size: 12px;
}

.terms-modal-body li {
    margin-bottom: 8px;
    font-size: 12px;
}

.terms-modal-body::-webkit-scrollbar {
    width: 8px;
}

.terms-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.terms-modal-body::-webkit-scrollbar-thumb {
    background: #0f2f57;
    border-radius: 4px;
}

.terms-modal-body::-webkit-scrollbar-thumb:hover {
    background: #0c2646;
}

.password-strength {
    font-size: 12px;
    font-weight: 500;
    padding: 5px;
    border-radius: 15px;
    display: none;
    width: 150px;
    box-sizing: border-box;
    text-align: center;
}

.password-strength.strong {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.password-strength.medium {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
}

.password-strength.weak {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.strength-bar-container {
    width: 100%;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
}

.strength-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-text {
    font-size: 11px;
    font-weight: 600;
}

.password-strength.strong .strength-text {
    color: #155724;
}

.password-strength.medium .strength-text {
    color: #856404;
}

.password-strength.weak .strength-text {
    color: #721c24;
}

.password-requirements {
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-size: 12px;
    color: #6c757d;
}

.password-requirements ul {
    margin: 5px 0;
    padding-left: 20px;
}

.password-requirements li {
    margin: 2px 0;
}

body.forgot-password-page {
    background-color: #f4f7fa;
    background-image: none;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding: 40px 20px;
}

.forgot-password-page .container {
    width: 100%;
    max-width: 800px;
    min-height: auto;
    position: static;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: visible;
    background-color: #fff;
    display: flex;
    gap: 40px;
    padding: 40px;
}

.forgot-password-page .left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e0e0e0;
    padding-right: 30px;
}

.forgot-password-page .left-column .logo {
    margin-bottom: 20px;
}

.forgot-password-page .left-column .logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.forgot-password-page .left-column h1 {
    color: #0f2f57;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.forgot-password-page .left-column p {
    color: #666;
    font-size: 16px;
    text-align: center;
    max-width: 280px;
}

.forgot-password-page .right-column {
    flex: 1;
}

.forgot-password-page .forgot-password-step {
    display: none;
}

.forgot-password-page .forgot-password-step.active {
    display: block;
}

.forgot-password-page .forgot-input-container {
    margin: 20px 0;
}

.forgot-password-page .forgot-input-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f2f57;
    font-size: 15px;
}

.forgot-password-page .forgot-input-container input {
    width: 100%;
    max-width: 400px;
    padding: 14px 20px;
    border: 1px solid #c9c9c9;
    border-radius: 30px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
    outline: none;
}

.forgot-password-page .forgot-input-container input:focus {
    border-color: #0f2f57;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(15, 47, 87, 0.2);
}

.forgot-password-page .forgot-password-btn {
    background: #0f2f57;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 220px;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(15, 47, 87, 0.3);
}

.forgot-password-page .forgot-password-btn:hover {
    background: #0c2646;
    box-shadow: 0 6px 16px rgba(15, 47, 87, 0.5);
}

.forgot-password-page .otp-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 25px 0;
}

.forgot-password-page .otp-input {
    width: 45px !important;
    height: 45px;
    text-align: center;
    border: 2px solid #ddd !important;
    border-radius: 10px !important;
    font-size: 18px;
    font-weight: bold;
    padding: 0 !important;
    transition: border-color 0.3s ease;
}

.forgot-password-page .otp-input:focus {
    border-color: #0f2f57 !important;
    box-shadow: 0 0 8px rgba(15, 47, 87, 0.3);
}

.forgot-password-page .success-message {
    text-align: center;
    color: #003366;
    margin: 25px 0;
}

.forgot-password-page .success-message i {
    font-size: 52px;
    margin-bottom: 15px;
    display: block;
    color: #28a745;
}

.forgot-password-page .success-message h3 {
    margin: 15px 0;
    color: #003366;
    font-weight: 700;
}

.forgot-password-page .forgot-password-step h3 {
    color: #0f2f57;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.forgot-password-page .success-message span {
    font-size: 16px;
    margin-left: 10px;
    font-weight: 600;
}

.forgot-password-page a {
    color: #0f2f57;
    font-size: 15px;
    text-decoration: none;
    margin-top: 30px;
    display: inline-block;
    font-weight: 600;
}

.forgot-password-page a:hover {
    text-decoration: underline;
}

.forgot-password-page .password-strength {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 500;
    padding: 5px;
    border-radius: 4px;
    display: none;
}

.forgot-password-page .password-strength.strong {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.forgot-password-page .password-strength.medium {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.forgot-password-page .password-strength.weak {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@media screen and (max-width: 1024px) {
    .forgot-password-page .container { max-width: 700px; padding: 35px; gap: 30px; }
    .forgot-password-page .left-column h1 { font-size: 28px; }
    .forgot-password-page .left-column p { font-size: 15px; }
    .forgot-password-page .forgot-password-btn { width: 200px; padding: 12px 25px; font-size: 15px; }
}

@media screen and (max-width: 767px) {
    body.forgot-password-page { padding: 20px 15px; }
    .forgot-password-page .container { max-width: 100%; flex-direction: column; gap: 30px; padding: 30px 25px; }
    .forgot-password-page .left-column { border-right: none; border-bottom: 1px solid #e0e0e0; padding-right: 0; padding-bottom: 25px; margin-bottom: 10px; }
    .forgot-password-page .left-column .logo img { width: 80px; height: 80px; }
    .forgot-password-page .left-column h1 { font-size: 24px; margin-bottom: 12px; }
    .forgot-password-page .left-column p { font-size: 14px; max-width: 100%; }
    .forgot-password-page .right-column { flex: none; width: 100%; }
    .forgot-password-page .forgot-password-step h3 { font-size: 18px; margin-bottom: 20px; }
    .forgot-password-page .forgot-input-container { margin: 15px 0; }
    .forgot-password-page .forgot-input-container label { font-size: 14px; }
    .forgot-password-page .forgot-input-container input { padding: 12px 18px; font-size: 14px; }
    .forgot-password-page .forgot-password-btn { width: 180px; padding: 12px 20px; font-size: 14px; margin: 20px auto 0; }
    .forgot-password-page .otp-container { gap: 8px; margin: 20px 0; }
    .forgot-password-page .otp-input { width: 40px !important; height: 40px; font-size: 16px; }
    .forgot-password-page .success-message i { font-size: 48px; margin-bottom: 12px; }
    .forgot-password-page .success-message h3 { font-size: 18px; margin: 12px 0; }
}
@media screen and (max-width: 479px) {
    body.forgot-password-page { padding: 15px 10px; }
    .forgot-password-page .container { padding: 25px 20px; gap: 25px; }
    .forgot-password-page .left-column { padding-bottom: 20px; }
    .forgot-password-page .left-column .logo img { width: 70px; height: 70px; }
    .forgot-password-page .left-column h1 { font-size: 20px; margin-bottom: 10px; }
    .forgot-password-page .left-column p { font-size: 13px; }
    .forgot-password-page .right-column { width: 100%; }
    .forgot-password-page .forgot-password-step h3 { font-size: 16px; margin-bottom: 18px; }
    .forgot-password-page .forgot-input-container { margin: 12px 0; }
    .forgot-password-page .forgot-input-container label { font-size: 13px; }
    .forgot-password-page .forgot-input-container input { padding: 12px 16px; font-size: 13px; }
    .forgot-password-page .forgot-password-btn { width: 160px; padding: 12px 18px; font-size: 13px; margin: 18px auto 0; }
    .forgot-password-page .otp-container { gap: 6px; margin: 18px 0; justify-content: center; }
    .forgot-password-page .otp-input { width: 38px !important; height: 38px; font-size: 15px; }
    .forgot-password-page .success-message i { font-size: 44px; margin-bottom: 10px; }
    .forgot-password-page .success-message h3 { font-size: 16px; margin: 10px 0; }
    .forgot-password-page .success-message span { font-size: 14px; }
    .password-strength { margin-top: -2px; }
}