body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #363636;
    /* Background gradasi futuristik */
}

.login-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 330px;
}

.login-form {
    padding: 20px;
    box-sizing: border-box;
}

.input-field {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;
}

.input-field:hover, .input-field:focus {
    border-color: #6861ce;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.login-button, .register-button {
    flex: 1;
    padding: 12px;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.login-button {
    background-color: #6861ce;
    color: #fff;
    margin-left: 5px;
}

.login-button:hover {
    background-color: #6861ce;
}


@media screen and (max-width: 600px) {
    .login-container {
        width: 90%;
    }
}


.loginLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.error {
    margin: 5px;
    background-color: #fdcece;
    padding: 6px;
    color: #ff0000;
}