/* Custom Styles */
.input-field {
    width: 100%;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    outline: none;
    transition: all 0.2s;
}
.input-field:focus {
    border-color: #13ecb6;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(19, 236, 182, 0.1);
}
.btn-primary {
    background-color: #13ecb6;
    color: white;
    font-weight: 800;
    padding: 0.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(19, 236, 182, 0.3);
    transition: all 0.2s;
}
.btn-primary:active { transform: scale(0.98); }
.btn-secondary {
    background-color: white;
    border: 1px solid #e5e7eb;
    color: #64748b;
    font-weight: 800;
    padding: 0.75rem;
    border-radius: 0.75rem;
}