/* Password Reset Module Styles */

.pr-container {

    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: transparent;
}
    
.pr-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
    padding: 40px;
}

.pr-header {
    text-align: center;
    margin-bottom: 30px;
}

.pr-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #e0e7ff;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #f0b40f;
}

.pr-title {
    font-size: 28px;
    font-weight: 700;
    color: #f0b40f;
    margin: 0 0 10px 0;
}

.pr-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

/* Progress Indicator */
.pr-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.pr-step {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    transition: background 0.3s ease;
}

.pr-step-active {
    background: #f0b40f;
}

.pr-line {
    width: 60px;
    height: 2px;
    background: #e5e7eb;
    transition: background 0.3s ease;
}

.pr-line-active {
    background: #f0b40f;
}

/* Error Message */
.pr-error {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    margin-bottom: 24px;
}

.pr-error svg {
    flex-shrink: 0;
    color: #dc2626;
    margin-top: 2px;
}

.pr-error span {
    font-size: 14px;
    color: #991b1b;
}

/* Form Groups */
.pr-form-group {
    margin-bottom: 20px;
}

.pr-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.pr-input-wrapper {
    position: relative;
}

.pr-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.pr-input {
    padding-left: 40px !important;
    width: 100%;
    background-color: white !important;
    padding: 12px 12px 12px 42px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.pr-input:focus {
    outline: none;
    border-color: #f0b40f;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.pr-code-input {
    text-align: center;
    font-size: 24px;
    letter-spacing: 8px;
    padding-left: 12px !important;
}

.pr-toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.pr-toggle-password:hover {
    color: #4b5563;
}

.pr-helper-text {
    font-size: 13px;
    color: #6b7280;
    margin: 8px 0 0 0;
}

/* Buttons */
.pr-button {
    width: 100%;
    padding: 14px;
    background: #f0b40f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.pr-button:hover {
    background: #f0b40f;
    transform: translateY(-1px);
}

.pr-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pr-button-secondary {
    width: 100%;
    padding: 10px;
    background: transparent;
    color: #f0b40f;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.pr-button-secondary:hover {
    color: #000;
}

/* Success Screen */
.pr-success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.pr-success-icon svg {
    color: #10b981;
}       
div#step-success {
    text-align: center;
}
#step-success h3 {
    font-size: 22px;
    font-weight: 700;
    color: #f0b40f;
    text-align: center;
    margin: 0 0 12px 0;
}

#step-success p {
    font-size: 15px;
    color: #6b7280;
    text-align: center;
    margin: 0 0 24px 0;
}

/* Footer */
.pr-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.pr-footer p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.pr-footer a {
    color: #f0b40f;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pr-footer a:hover {
    color: #efbc2d;
}

/* Responsive */
@media (max-width: 480px) {
    .pr-card {
        padding: 30px 20px;
    }
    
    .pr-title {
        font-size: 24px;
    }
}