.auth-form input,
.auth-form select,
.auth-form textarea {
    color: #374151 !important;
    background-color: #FFFFFF !important;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    cursor: text;
    z-index: 10;
    position: relative;
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background-color: #FFFFFF !important;
}

.auth-form input::placeholder,
.auth-form select::placeholder,
.auth-form textarea::placeholder {
    color: #9CA3AF !important;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.auth-form .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.auth-form .error-message {
    color: #EF4444;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.auth-form .success-message {
    color: #10B981;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.auth-link {
    color: #10B981;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #059669;
    text-decoration: underline;
}

.auth-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Improve clickability */
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
}

/* Make register button more obvious */
.auth-form .register-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #10B981;
    font-weight: 500;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-form .register-link:hover {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
    text-decoration: underline;
}
