body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.container {
    display: flex;
    height: 100vh;
}
.image-container {
    flex: 1;
    background-image: url('../img/elemen1.png'); /* Ganti dengan URL gambar kamera */
    background-size: cover;
    background-position: center;
}
.form-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}
.login-container {
    background-color: #666;
    padding: 20px;
    border-radius: 30px;
    text-align: center;
    width: 300px;
}
h1 {
    font-family: Arial, sans-serif;
    color: white;
    margin-bottom: 20px;
}
input[type="text"],
input[type="password"] {
    width: 70%;
    padding: 10px;
    margin: 10px;
    border-radius: 30px;
    text-align: center;
    border: none;
}
input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: #888;
}
button {
    width: 45%;
    padding: 10px;
    border: none;
    border-radius: 30px;
    background-color: black;
    color: white;
    cursor: pointer;
}


button:hover {
    background-color: #444;
}
.register {
    margin-top: 10px;
}
.register a {
    color: white;
    text-decoration: none;
}
.register a:hover {
    text-decoration: underline;
}