/* public/css/style.css */

/* 1. Reset & Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* 2. Background & Posisi Tengah */
body {
    background-color: #f0f2f5; /* Warna abu-abu muda ala Facebook */
    display: flex;
    justify-content: center; /* Tengah Horizontal */
    align-items: center;     /* Tengah Vertikal */
    height: 100vh;           /* Tinggi layar penuh */
    color: #333;
}

/* 3. Kartu Login (Kotak Putih) */
.login-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Bayangan halus */
    width: 100%;
    max-width: 400px; /* Batas lebar agar rapi di HP */
    text-align: center;
}

/* 4. Logo & Judul */
.logo-area h2 {
    color: #1a73e8; /* Biru Google */
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.logo-area p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* 5. Input Form */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

.form-group input:focus {
    border-color: #1a73e8;
    background-color: #f8fbff;
}

/* 6. Tombol Login */
button {
    width: 100%;
    padding: 14px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

button:hover {
    background-color: #1557b0;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* 7. Pesan Error */
.error-text {
    color: #d93025;
    font-size: 0.9rem;
    margin-top: 15px;
    min-height: 20px;
}