/* Custom styles to complement Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #2563eb;  /* Blue-600 */
    --primary-hover: #1d4ed8;  /* Blue-700 */
    --text-primary: #1f2937;   /* Gray-800 */
    --text-secondary: #4b5563; /* Gray-600 */
    --background: #f3f4f6;     /* Gray-100 */
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
}

/* Logo styles */
.logo-container {
    max-width: 200px;
    margin: 0 auto;
}

.logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease-in-out;
}

/* Form focus states */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.5);
    border-color: var(--primary-color);
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Custom button styles */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

/* Card styles */
.card {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
}

/* Form styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

/* Link styles */
.link-primary {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-primary:hover {
    color: var(--primary-hover);
    text-decoration: underline;
} 