/* Basic Styles */
body {
    font-family: 'Courier New', Courier, monospace;
    color: #00FF00;
    background: #111;
    margin: 0;
    padding: 0;
}

h1, h2 {
    color: #00FF00;
    text-align: center;
    font-size: 2em;
    text-shadow: 0 0 10px #00FF00, 0 0 20px #00FF00;
}

input[type="text"], input[type="password"] {
    background: #222;
    border: 1px solid #00FF00;
    color: #00FF00;
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    font-size: 1em;
    border-radius: 5px;
}

button, .logout-btn {
    background: #00FF00;
    color: #111;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}

button:hover, .logout-btn:hover {
    background: #00CC00;
}

/* Login Page Styles */
.login-bg {
    background: url('https://imgur.com/a/0mDCb2b.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #00FF00;
}

.login-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px; /* Lebar maksimal kotak login */
    text-align: center;
    box-sizing: border-box; /* Agar padding tidak mempengaruhi lebar */
}

h1 {
    margin-bottom: 20px;
}

input[type="text"], input[type="password"] {
    width: calc(100% - 20px); /* Sesuaikan dengan padding */
    padding: 10px;
}

button {
    width: 100%; /* Tombol mengisi seluruh lebar form */
    padding: 12px;
    font-size: 1.2em;
}

/* Error message */
.error {
    color: red;
    font-size: 0.9em;
    text-align: center;
    margin-top: 10px;
}

/* Success message */
.success {
    color: green;
    font-size: 0.9em;
    text-align: center;
}

/* Control Page Styles */
.control-bg {
    background: url('https://source.unsplash.com/1600x900/?hacker') no-repeat center center fixed;
    background-size: cover;
    color: #00FF00;
    padding: 20px;
}

.control-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.logout-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #FF0000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.logout-btn:hover {
    background-color: #cc0000;
}
