/* assets/css/index.css */
body {
    background-color: #f0f2f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.snbp-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.snbp-header {
    background: #1e3a8a; /* SNBP dark blue */
    color: white;
    padding: 2rem;
    text-align: center;
    border-bottom: 4px solid #facc15; /* Yellow accent */
}

.snbp-header h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.snbp-header p {
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.snbp-body {
    padding: 2rem;
}

.form-group label {
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
}

.form-control:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 0.25rem rgba(30, 58, 138, 0.25);
}

.btn-primary {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #152a65;
    border-color: #152a65;
    transform: translateY(-1px);
}

/* Status Cards */
.status-card {
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 1rem;
    color: white;
    animation: fadeIn 0.5s ease-out forwards;
}

.status-lulus {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.status-tidak-lulus {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.status-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.status-title {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.student-data {
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
    backdrop-filter: blur(5px);
}

.data-row {
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
}

.data-label {
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.reason-box {
    margin-top: 1.5rem;
    background: rgba(0,0,0,0.1);
    border-left: 4px solid #fca5a5;
    padding: 1rem;
    text-align: left;
    border-radius: 4px;
}

.reason-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.reason-text {
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-back {
    margin-top: 1.5rem;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-back:hover {
    background: rgba(255,255,255,0.3);
    color: white;
}
