* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f1f5f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.kembali {
    position: absolute;
    top: 2%;
    left: 2%;

}

.kembali a {
    font-size: 1.8rem;
    color: black;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    /* border: #1e3a8a 1px solid; */
}

.kembali img {
    width: 35px;
    height: auto;
}

/* CARD LOGIN */
.login-container {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 1;
    /* transform: translateY(20px);
    animation: fadeSlide 0.8s ease forwards; */
}

@keyframes fadeSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

.login-container h2 {
    font-size: 1.6rem;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.notif {
    font-style: italic;
    text-align: left;
    color: red;
    transition: 0.2s;
}

.input-group {
    position: relative;
    text-align: left;
    margin-bottom: 18px;
}

.input-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: 0.2s;
}

.input-group input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
}

.checkbox {
    text-align: left;
    margin-bottom: 5px;
}

.ck {
    text-align: left;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: #1e40af;
    /* background: grey; */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    background: #1e3a8a;
}

.register-link {
    margin-top: 15px;
    font-size: 0.95rem;
}

.register-link a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover {
    text-decoration: underline;
}

.berhasil-login {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 150px;
    background-color: white;
    border: 1px grey solid;
    z-index: 999;
    justify-content: center;
    box-shadow: #333 50px;
    display: none;
}

#togglePassword {
    position: absolute;
    right: 8px;
    top: 66%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.1s;
}