/* Custom Font Setup (Inter) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --net805-blue: #0A66C2; /* Professional Blue */
    --net805-dark: #0F172A; /* Slate 900 */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* Slate 50 */
}

.shadow-net805 {
    box-shadow: 0 10px 15px -3px rgba(10, 102, 194, 0.1), 0 4px 6px -2px rgba(10, 102, 194, 0.05);
}

/* Gradient for the primary button */
.btn-primary {
    background: linear-gradient(135deg, var(--net805-blue) 0%, #3B82F6 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.4);
    transform: translateY(-2px);
}

/* Form controls - elegant input styling */
.form-control {
    display: block;
    width: 100%;
    border-radius: 0.75rem; /* similar to rounded-xl */
    border: 1px solid rgba(148, 163, 184, 0.8); /* slate-400 */
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.02);
    color: #0f172a;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        transform 0.1s ease;
}

.form-control::placeholder {
    color: rgba(148, 163, 184, 0.9); /* slate-400 */
}

.form-control:focus {
    outline: none;
    border-color: var(--net805-blue);
    box-shadow:
        0 0 0 1px rgba(10, 102, 194, 0.4),
        0 18px 45px rgba(15, 23, 42, 0.22);
    background-color: #ffffff;
    transform: translateY(-1px);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}



