#passwordResetModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#passwordResetModal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    width: 400px;
}

#passwordResetModal .modal-header {
    margin-bottom: 20px;
    position: relative;
}

#passwordResetModal .modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #2f71b8;
    display: flex;
    align-items: center;
    gap: 10px;
}

#passwordResetModal .modal-close {
    position: absolute;
    right: -15px;
    top: -15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

#passwordResetModal .modal-body {
    padding: 0;
}

#passwordResetModal .modal-description {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

#passwordResetModal .form-row {
    margin-bottom: 20px;
}

#passwordResetModal .form-row label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

#passwordResetModal .form-row input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e6eef7;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

#passwordResetModal .form-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

#passwordResetModal .btn {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

#passwordResetModal .btn-secondary {
    background: #f0f7ff;
    border: 2px solid #2f71b8;
    color: #2f71b8;
}

#passwordResetModal .btn-primary {
    background: #2f71b8;
    border: none;
    color: white;
}

#passwordResetModal .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(47, 113, 184, 0.1);
}
