body {
    background-image: url('background4.webp'); /* Gambar latar belakang */
    background-size: cover;
    background-position: center;
    margin: 0;
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: rgba(255, 255, 255, 0.1); /* Latar belakang transparan */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
    backdrop-filter: blur(10px); /* Efek blur */
}

.login-container h2 {
    color: white;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
}

.input-group .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 20px;
    color: white;
}

.options label {
    cursor: pointer;
}

.options a {
    color: white;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    padding: 10px;
    background: white;
    color: #4C4C6D;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
}

.login-btn:hover {
    background: #f0f0f0;
}

p {
    color: white;
    font-size: 12px;
}

p a {
    color: #fff;
    text-decoration: none;
}
