* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffcc23;
}

/* CONTAINER LOGIN */
form {
    width: 350px;
    margin: 100px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

/* JUDUL */
h2 {
    text-align: center;
    margin-bottom: 25px;
}

/* INPUT */
input[type="text"],
input[type="password"],
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* BUTTON */
button {
    width: 100%;
    padding: 12px;
    background: #2c7be5;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
}

button:hover {
    background: #1f6ad8;
}

/* TEXT REGISTER */
.text {
    text-align: center;
    margin-top: 15px;
}

/* ERROR & SUCCESS */
.error {
    color: red;
    text-align: center;
    margin-bottom: 10px;
}

.success {
    color: green;
    text-align: center;
}
