* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .card {
        width: 100% !important;
        margin: 20px auto !important;
        padding: 20px !important;
    }

    .container {
        width: 100% !important;
        padding: 0 15px !important;
    }
}


body {
    font-family: "Poppins", sans-serif !important;
    background-color: #EEEEEE !important;
}

.container {
    max-width: 750px;
    margin: 0 auto;
}
.login {
    font-weight: bold;
    text-align: center;
    color: #1068b5;
    padding: 10px;
    width: 100%;
    font-size: 30px;
}

.card {
    margin-top: 50px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    background-color: #ffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.logo {
    margin-top: 10px;
    width: 140px;
    height: 140px;
}

form {
    margin-top: 20px;
    width: 100%;
}

.form-group,
.input-group {
    margin-bottom: 15px;
}

label {
    width: 100%;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.red-star {
    color: #a4161a;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-weight: bold;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    background-color: #6c757d;
    color: #fff;
}

button:hover {
    background-color: #6c757d;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: underline;
}

.footer {
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }
}
.fz5 {
    font-size: 50% !important;
}
.fz6 {
    font-size: 60% !important;
}
.fz7 {
    font-size: 70% !important;
}
.fz8 {
    font-size: 80% !important;
}
.fz9 {
    font-size: 90% !important;
    color: #a4161a !important;
    text-decoration: none;
}
.daftar,
.icon {
    color: #660708;
    text-decoration: none;
}

.d {
    margin-top: 10px;
}
.input-custom {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.error-border {
    border-color: #dc3545 !important;
    background-color: #ffe6e6;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.custom-alert {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #f8d7da;
    color: #721c24;
    padding: 12px 20px;
    border-radius: 5px;
    border-left: 5px solid #dc3545;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    min-width: 300px;
    transition: top 0.5s ease-in-out;
}

.custom-alert-icon {
    margin-right: 10px;
}

.close-alert {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    color: #721c24;
    cursor: pointer;
}

.custom-alert.show {
    top: 20px;
}
