/* Forms Styles */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input:disabled {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.form-button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.form-button-primary {
    background-color: #3b82f6;
    color: white;
}

.form-button-primary:hover {
    background-color: #2563eb;
}

.form-button-secondary {
    background-color: #6b7280;
    color: white;
}

.form-button-secondary:hover {
    background-color: #4b5563;
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-help {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Checkbox and radio */
.form-checkbox, .form-radio {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* TOTP input */
.totp-input {
    text-align: center;
    font-size: 2rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5rem;
}
