
/* Fast & Sharp Discord-Themed Login Page CSS */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
    --discord-gray: #2c2f33;
    --discord-dark: #23272a;
    --discord-light: #99aab5;
    --discord-blue: #7289da;
    --discord-hover: #5b6eae;
    --discord-white: #ffffff;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #1a1b1e;
    color: var(--discord-white);
    margin: 0;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.flex {
    display: flex;
}

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

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

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

.space-y-4 > * + * {
    margin-top: 1rem;
}

.bg-gray-800 {
    background-color: #2c2f33;
}

.bg-gray-900 {
    background-color: #1a1b1e;
}

.bg-discord-blue {
    background-color: #7289da;
}

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

.text-white {
    color: #ffffff;
}

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

.text-gray-400 {
    color: #9ca3af;
}

.hover\:bg-blue-600:hover {
    background-color: #5b6eae;
}

.hover\:bg-gray-200:hover {
    background-color: #e5e7eb;
}

.p-8 {
    padding: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

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

.rounded-md {
    border-radius: 0;
    border: 2px solid var(--discord-blue);
}

.rounded-lg {
    border-radius: 0;
    border: 2px solid var(--discord-blue);
}

.shadow-lg {
    box-shadow: none;
    border: 2px solid var(--discord-blue);
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

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

.font-bold {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.font-medium {
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.w-64 {
    width: 16rem;
}

.w-full {
    width: 100%;
}

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

.cursor-pointer {
    cursor: pointer;
}

.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke, transform;
    transition-timing-function: ease;
    transition-duration: 0.1s;
}

.duration-200 {
    transition-duration: 0.1s;
}

.login-options h1 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 24px;
}

.login-note {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 14px;
    text-align: center;
}

/* Add blue hover styles */
.text-blue-400 {
    color: #60a5fa;
}

.hover\:text-blue-300:hover {
    color: #93c5fd;
}
