﻿/* Success/Info Message Container */
.password-reset-message {
    padding: 20px;
    text-align: center;
}

/* Success Title */
.password-reset-success-title {
    color: #4CAF50;
    border: 1px solid #4CAF50;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Error Title */
.password-reset-error-title {
    color: #c62828;
    border: 1px solid #c62828;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Message Paragraph */
.password-reset-message p {
    margin-bottom: 20px;
    color: #666;
}

/* Link Styling */
.password-reset-link {
    color: #1090f2;
    text-decoration: none;
}

/* Link as Button */
.password-reset-link-button {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    color: white;
}

/* Error Alert Box */
.password-reset-error {
    padding: 10px;
    margin: 10px 0;
    background-color: #ffebee;
    color: #c62828;
    border-radius: 4px;
    text-align: center;
}

/* Instruction Text */
.password-reset-instructions {
    padding: 0 20px;
    margin-bottom: 20px;
    color: #666;
    text-align: center;
}

/* Password Requirements */
.password-requirements {
    padding: 0 20px;
    margin-bottom: 15px;
}

.password-requirements small {
    color: #666;
}

/* Password Validation List */
.password-validation {
    padding: 0 10px;
    margin-bottom: 15px;
    font-weight: 500;
}

.password-validation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-validation li {
    padding: 5px 0;
    color: #c62828;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.password-validation li:before {
    content: '✗';
    margin-right: 8px;
    font-weight: bold;
}

.password-validation li.valid {
    color: #4CAF50;
}

.password-validation li.valid:before {
    content: '✓';
}

/* Submit Button */
.password-reset-button {
    cursor: pointer;
}

.password-reset-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Back to Login Container */
.password-reset-back-link {
    text-align: center;
    margin-top: 15px;
}

.password-reset-back-link a {
    color: #1090f2;
    text-decoration: none;
    font-size: 14px;
}
