﻿.reset-password-container {
    max-width: 480px;
    margin: 80px auto 40px;
}

.reset-password-panel {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.panel-header {
    background: linear-gradient(135deg, #0C4930 0%, #072b1c 100%);
    color: white;
    padding: 32px 24px;
    text-align: center;
}

.reset-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

    .reset-icon i {
        font-size: 32px;
    }

.panel-header h1 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 600;
}

.panel-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.95;
}

.panel-body {
    padding: 32px 24px;
}

.mobile-info {
    background: #e8f5ee;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    border-left: 4px solid #0C4930;
}

.mobile-number {
    font-size: 16px;
    font-weight: 700;
    color: #0C4930;
    margin: 8px 0;
}

.info-note {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: flex-start;
    margin-top: 8px;
}

    .info-note i {
        margin-right: 8px;
        color: #0C4930;
        margin-top: 2px;
    }

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
}

    .form-label i {
        margin-right: 8px;
        width: 20px;
        text-align: center;
    }

.form-control {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .form-control:focus {
        border-color: #0C4930;
        box-shadow: 0 0 0 3px rgba(12, 73, 48, 0.1);
        outline: none;
    }

.code-input {
    font-size: 20px;
    letter-spacing: 8px;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

    .code-input::placeholder {
        letter-spacing: normal;
        font-size: 14px;
        color: #999;
    }

.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    font-size: 16px;
}

    .toggle-password:hover {
        color: #0C4930;
    }

.password-strength {
    margin-top: 8px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.strength-meter {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
}

.strength-weak {
    background-color: #dc3545;
    width: 25%;
}

.strength-fair {
    background-color: #ffc107;
    width: 50%;
}

.strength-good {
    background-color: #28a745;
    width: 75%;
}

.strength-strong {
    background-color: #0C4930;
    width: 100%;
}

.password-requirements {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0 24px 0;
    font-size: 13px;
    color: #666;
}

    .password-requirements h5 {
        margin: 0 0 8px 0;
        color: #0C4930;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

        .password-requirements h5 i {
            margin-right: 8px;
        }

    .password-requirements ul {
        margin: 0;
        padding-left: 20px;
    }

    .password-requirements li {
        margin-bottom: 4px;
        position: relative;
    }

        .password-requirements li.requirement-met {
            color: #28a745;
        }

            .password-requirements li.requirement-met:before {
                content: "✓ ";
                color: #28a745;
                font-weight: bold;
            }

        .password-requirements li.requirement-not-met {
            color: #666;
        }

            .password-requirements li.requirement-not-met:before {
                content: "○ ";
                color: #999;
            }

.reset-button {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #0C4930 0%, #072b1c 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

    .reset-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(12, 73, 48, 0.4);
    }

    .reset-button:active {
        transform: translateY(0);
    }

    .reset-button i {
        margin-right: 10px;
        font-size: 18px;
    }

.back-link {
    text-align: center;
    margin-top: 24px;
}

    .back-link a {
        color: #0C4930;
        text-decoration: none;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        transition: color 0.2s ease;
    }

        .back-link a:hover {
            color: #0e5c3a;
            text-decoration: underline;
        }

        .back-link a i {
            margin-right: 6px;
        }

.validation-summary-errors {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #c33;
    font-size: 14px;
}

.validation-summary-valid {
    display: none !important;
}

.text-danger {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

.app-logo {
    text-align: center;
    margin-bottom: 24px;
}

    .app-logo img {
        max-height: 48px;
        max-width: 200px;
        object-fit: contain;
    }

.resend-code {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
}

    .resend-code a {
        color: #0C4930;
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
    }

        .resend-code a:hover {
            text-decoration: underline;
        }

        .resend-code a i {
            margin-right: 4px;
        }
