/* public/css/auth.css */
:root {
    --primary: #004d40;
    --accent: #ffc107;
    --white: #ffffff;
    --bg: #f0f2f5;
}

.auth-container {
    background: linear-gradient(135deg, var(--primary) 0%, #00251a 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.auth-card {
    background: var(--white);
    width: 100%;
    max-width: 900px; /* Lebar untuk form pendaftaran lengkap */
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    overflow: hidden;
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header img {
    width: 80px;
    margin-bottom: 10px;
}

.form-section-title {
    background: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-left: 5px solid var(--accent);
    margin: 25px 0 15px 0;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 4px;
}

.grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    width: 100%;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 30px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #00332b;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .grid-row { grid-template-columns: 1fr; }
}

/* Gaya untuk menandai input yang belum diisi (Merah) */
.error-field {
    border: 2px solid #f44336 !important;
    background-color: #ffebee !important;
}