/* --- TAMPILAN KHUSUS LOGIN & REGISTER --- */
.auth-body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Hanken Grotesk", sans-serif;
}

.auth-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg-main\ \(1\).png');
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.7);
    z-index: -1;
}

.auth-card {
    background-color: #FFF7CD;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 90%;
    max-width: 400px;
    z-index: 2;
}

.auth-logo {
    width: 80px;
    margin-bottom: 15px;
}

.auth-card h2 {
    font-family: "Coiny", cursive;
    color: #FB9B8F;
    margin: 0 0 10px 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.auth-form input {
    padding: 12px;
    border: 1px solid #FDC3A1;
    border-radius: 10px;
    font-family: inherit;
    outline: none;
}

.auth-form input:focus {
    border-color: #F57799;
    box-shadow: 0 0 5px rgba(245, 119, 153, 0.5);
}

.btn-auth {
    background-color: #F57799;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-auth:hover {
    background-color: #FB9B8F;
    transform: translateY(-2px);
}

.auth-link {
    margin-top: 20px;
    font-size: 0.9rem;
}

.auth-link a {
    color: #F57799;
    font-weight: bold;
}

.back-link {
    color: #888 !important;
    font-weight: normal !important;
}