/* styles.css */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

body {
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px #000000;
}

form {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    width: 250px; /* Lebar form sesuai kotak kuning */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

label {
    font-size: 1em;
    display: block;
    margin-bottom: 8px;
    text-align: left;
}

input {
    width: 100%; /* Input tetap memenuhi form */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    width: 100%; /* Tombol juga selebar form */
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
 
