body {
    /* Ganti 'background.jpg' dengan nama berkas gambar hasil latar belakang yang diunduh */
    background: url('../images/auth-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary-custom {
    background-color: #1a59b7;
    border-color: #1a59b7;
    padding: 10px;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background-color: #13428b;
    border-color: #13428b;
}

.welcome-text-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 30px;
    border-left: 5px solid #1a59b7;
}

.welcome-area {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* White overlay dari bawah */
.welcome-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 35%;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.75) 35%,
            rgba(255, 255, 255, 0.95) 75%,
            rgba(255, 255, 255, 1));

    display: flex;
    align-items: flex-end;
}

/* Posisi teks */
.welcome-content {
    margin-left: 30px;
    margin-bottom: 55px;

    max-width: 600px;
}

.welcome-content h2 {
    font-size: 2rem;
    line-height: 1.2;
}

.welcome-content p {
    font-size: 1.1rem;
}

footer {
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

a {
    text-decoration: none;
}