body {
    background-image: url('../images/background.png'); /* Gambar latar belakang */
    background-size: cover; /* Menutupi seluruh halaman */
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100vh;
    width: 100vw;
    margin: 0; /* Menghapus margin default */
    padding: 0; /* Menghapus padding default */
    font-family: Courier New, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.welcome {
    background: #000099;
    color: white;
    padding: 40px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form {
    padding: 40px;
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
}

.password-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.password-container input {
    width: 100%;
    padding-right: 40px; /* Space for the eye icon */
}

.pass-icon {
    position: absolute;
    top:32%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 18px;
}

.pass-icon:hover {
    color: #555;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background: #ffcc00;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.login-form button:hover {
    background: #0056b3;
}

.login-form a {
    display: block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
}

.login-form a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #888;
}
