/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body & Background */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #1e293b, #334155);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container utama */
.homepage {
    text-align: center;
    background: white;
    padding: 50px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 90%;
}

/* Judul utama */
.main-title {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 10px;
}

/* Subjudul */
.subtitle {
    font-size: 16px;
    color: #475569;
    margin-bottom: 30px;
}

/* Grup tombol */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Tombol umum */
.btn {
    text-decoration: none;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* Tombol Daftar */
.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

/* Tombol Login */
.btn-secondary {
    background-color: #e2e8f0;
    color: #1e293b;
}

.btn-secondary:hover {
    background-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Responsive untuk layar kecil */
@media (max-width: 400px) {
    .homepage {
        padding: 35px 20px;
    }
    .main-title {
        font-size: 24px;
    }
    .btn {
        font-size: 14px;
        padding: 10px 0;
    }
}