/* ==========================================
   PENGUMUMAN KELULUSAN - SIMPLE LOGIN
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

/* ==========================================
   CONTAINER
   ========================================== */

.pengumuman-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
}

/* ==========================================
   HEADER SECTION
   ========================================== */

.header-pengumuman {
    text-align: center;
    margin-bottom: 30px;
}

.header-pengumuman .logo {
    margin-bottom: 20px;
}

.header-pengumuman .logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.header-pengumuman h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.header-pengumuman p {
    font-size: 0.95rem;
    color: #64748b;
}

/* ==========================================
   SEARCH CARD (LOGIN CARD)
   ========================================== */

.search-card {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 32px;
    border: 1px solid #e2e8f0;
}

.search-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    text-align: center;
}

/* ==========================================
   MESSAGES
   ========================================== */

.error-message {
    background: #fee;
    border: 1px solid #fcc;
    border-left: 4px solid #e53e3e;
    color: #c53030;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-left: 4px solid #28a745;
    color: #155724;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* ==========================================
   FORM
   ========================================== */

.search-form {
    margin-top: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #334155;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group label svg {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.95rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #1e293b;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
}

/* ==========================================
   BUTTON
   ========================================== */

.btn-search {
    width: 100%;
    padding: 14px 20px;
    background: #1e293b;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.btn-search svg {
    width: 18px;
    height: 18px;
}

.btn-search:hover {
    background: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
}

.btn-search:active {
    transform: translateY(0);
}

/* ==========================================
   INFO TEXT
   ========================================== */

.info-text {
    margin-top: 20px;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 12px;
    background: #f8fafc;
    border-radius: 6px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 576px) {
    .pengumuman-container {
        padding: 16px;
    }

    .search-card {
        padding: 24px 20px;
    }

    .header-pengumuman h1 {
        font-size: 1.5rem;
    }

    .header-pengumuman p {
        font-size: 0.9rem;
    }

    .header-pengumuman .logo img {
        width: 70px;
        height: 70px;
    }

    .search-title {
        font-size: 1.25rem;
    }
}