﻿.btn-login {
    display: inline-block;
    width: 100%; /* penuh di layar hp */
    padding: 14px 20px; /* tombol lebih besar */
    font-size: 18px; /* lebih mudah dibaca di hp */
    font-weight: bold;
    background-color: #7f3e98; /* warna tombol */
    color: white;
    border: none;
    border-radius: 8px; /* rounded */
    cursor: pointer;
    text-align: center;
}

    .btn-login:hover {
        background-color: #6e347f;
    }

/* Responsive tambahan jika perlu */
@media (max-width: 600px) {
    .btn-login {
        font-size: 20px;
        padding: 16px 24px;
    }
}
