@import url('https://fonts.googleapis.com/css2?family=Fascinate+Inline&family=Poppins:wght@400;600&display=swap');

body {
    background-color: #9EC6E6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.container {
    background-color: #2F6396;
    border-radius: 30px;
    box-shadow: 8px 8px 0 #8AA8C3;
    padding: 30px 30px 40px;
    width: 320px;
    color: white;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

.logo {
    font-family: "Franklin Gothic Demi", "Arial Black", Arial, sans-serif;
    font-weight: 600; /* demi tebal */
    font-size: 36px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
}

.logo img {
    width: 36px;
    height: 36px;
}

/* Toggle switch container */
.toggle-switch {
    background-color: #D7E4FA;
    width: 170px;
    margin: 0 auto 26px auto;
    padding: 6px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    gap: 6px;
    user-select: none;
}

.toggle-switch div {
    flex: 1;
    padding: 8px 0;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    color: #7BA2E8;
    transition: all 0.3s ease;
}

.toggle-switch .active {
    background-color: #7BA2E8;
    color: white;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px 16px;
    margin: 6px 0 16px 0;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    box-sizing: border-box;
    background-color: white;
    color: #6D7D8B;
    position: relative;
}

/* Password wrapper */
.password-wrapper {
    position: relative;
}

/* Tombol show/hide password */
.password-wrapper button {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: #7BA2E8;
    padding: 0 6px;
    user-select: none;
    outline: none;
    height: 20px;
    display: flex;
    align-items: center;
}

/* Checkbox label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 18px;
    user-select: none;
    justify-content: flex-start;
    color: white;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Tombol submit */
button.submit-btn {
    background-color: white;
    color: #2F6396;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 25px;
    padding: 8px 25px;
    cursor: pointer;
    box-shadow: 2px 3px 0 #8AA8C3;
    transition: background-color 0.25s ease;
    float: right;
    margin-top: -10px;
}

button.submit-btn:hover {
    background-color: #cde1ff;
}

/* Responsif */
@media(max-width: 360px) {
    .container {
        width: 90vw;
    }
}



