Spaces:
Running
Running
File size: 645 Bytes
c61faef 3cb35b8 46c7ce2 3cb35b8 c61faef 46c7ce2 3cb35b8 46c7ce2 3cb35b8 c61faef | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f9fafb;
}
/* Smooth transitions for interactive elements */
button, input[type="submit"], a {
transition: all 0.2s ease;
}
/* Custom focus styles */
input:focus, button:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
/* Container styles */
.min-h-full {
min-height: 100vh;
}
/* Logo and header styles */
.sm\:max-w-md {
max-width: 28rem;
}
/* Form container */
.sm\:mx-auto {
margin-left: auto;
margin-right: auto;
}
|