/* ===================================================
   📦 AUTH LOGIN PAGE STYLING (public/css/auth.css)
   =================================================== */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* === Global Styles === */
body {
    background-color: #f5efef;
    font-family: 'Inter', sans-serif;
}

/* === Login Card === */
#login-card {
    background-color: #F8F7F4;
    padding: 28px;
    margin: 28px auto 0;
    border: 3px solid black;
    border-radius: 28px;
    box-shadow: 7px 7px black;
    max-width: 448px;
    width: 100%;
}

/* === Logo Section === */
.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
    padding: 8px;
}
.logo img {
    max-width: 30%;
    height: auto;
}

/* === Input Fields === */
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none;
}
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* === Checkbox === */
input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
}
input[type="checkbox"]:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* === Login Button === */
#login-button {
    width: 100%;
    padding: 12px 16px;
    background-color: white;
    color: #2563eb;
    border: 2px solid black;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 4px 4px black;
    transition:
        transform 0.3s ease,
        background-color 0.5s ease,
        color 0.5s ease,
        border 0.5s ease,
        box-shadow 0.5s ease;
    outline: none;
}
#login-button:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-4px);
    border: none;
    box-shadow: none;
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-3xl { font-size: 1.875rem; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-gray-500 { color: #6b7280; }
.text-blue-600 { color: #2563eb; }
.hover\:text-blue-500:hover { color: #3b82f6; }
.text-red-700 { color: #b91c1c; }

.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }
.m-4 { margin: 1rem; }

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

.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }

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

.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }

.shadow-lg {
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.bg-red-100 { background-color: #fee2e2; }
.border-red-200 { border-color: #fecaca; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* === Responsive Utilities Placeholder === */
/* 
.sm\:px-6 {}
.lg\:px-8 {}
-> Gunakan media query jika tidak pakai Tailwind
*/
