body {
    font-family: "Inter", sans-serif;
    background-color: #f0f2f5;
    /* Warna latar belakang lembut */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    animation: fadeInDown 1s;
}

.login-container {
    background-color: #f3a504;
    border-radius: 12px;
    /* Lebih bulat dari default Bootstrap */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Bayangan lebih halus dan dalam */
    padding: 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(
        circle,
        rgba(93, 173, 226, 0.1) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
}

.login-container::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: radial-gradient(
        circle,
        rgba(144, 202, 249, 0.1) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
}

.form-control {
    border-radius: 8px;
    /* Sudut lebih bulat untuk input */
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: #0d6efd;
    /* Warna biru Bootstrap */
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    /* Efek fokus yang lebih halus */
}

.btn-primary {
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: 600;
    background-color: #0d1140;
    border-color: #111864;
    transition: background-color 0.2s ease, border-color 0.2s ease,
        transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #000000;
    border-color: #0d1140;
    transform: translateY(-1px);
    /* Efek hover sedikit naik */
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-label {
    font-size: 0.95rem;
    color: #6c757d;
}

h2 {
    margin-bottom: 30px;
    color: #343a40;
    font-weight: 700;
}

.text-muted a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.text-muted a:hover {
    text-decoration: underline;
}

.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #adb5bd;
    font-size: 0.9rem;
}

.or-divider::before,
.or-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e9ecef;
}

.or-divider:not(:empty)::before {
    margin-right: 0.25em;
}

.or-divider:not(:empty)::after {
    margin-left: 0.25em;
}

.index-page {
    background-color: #0d1140;
}
