.ds-password-reset-container {
    max-width: 450px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ds-form h2 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333;
}

.ds-form p {
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
}

.ds-form-group {
    margin-bottom: 20px;
}

.ds-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.ds-form-group input[type="email"],
.ds-form-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.ds-form-group input:focus {
    outline: none;
    border-color: #0073aa;
}

.ds-form-message {
    margin: 15px 0;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.ds-form-message:not(:empty) {
    display: block;
}

.ds-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ds-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.ds-btn {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ds-btn-primary {
    background: #0073aa;
    color: #fff;
}

.ds-btn-primary:hover:not(:disabled) {
    background: #005a87;
}

.ds-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
