/* Authentication Pages Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f3f4f6;
    color: #111827;
    line-height: 1.6;
}

.min-h-screen {
    min-height: 100vh;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.sm\:justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.pt-6 {
    padding-top: 1.5rem;
}

.sm\:pt-0 {
    padding-top: 0;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.w-20 {
    width: 5rem;
}

.h-20 {
    height: 5rem;
}

.fill-current {
    fill: currentColor;
}

.text-gray-500 {
    color: #6b7280;
}

.w-full {
    width: 100%;
}

.sm\:max-w-md {
    max-width: 28rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.bg-white {
    background-color: #ffffff;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.overflow-hidden {
    overflow: hidden;
}

.sm\:rounded-lg {
    border-radius: 0.5rem;
}

.font-sans {
    font-family: 'Figtree', sans-serif;
}

.text-gray-900 {
    color: #111827;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Form styles */
label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

button[type="submit"],
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #2D3142;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

button[type="submit"]:hover,
.btn:hover {
    background: #1f2230;
}

.text-sm {
    font-size: 0.875rem;
}

.text-gray-600 {
    color: #4b5563;
}

a {
    color: #2D3142;
    text-decoration: underline;
}

a:hover {
    color: #FF6B35;
}

.mb-4 {
    margin-bottom: 1rem;
}

.flex.items-center.justify-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block {
    display: block;
}
