body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('../img/bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* overlay biar gelap elegan */
.overlay {
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(8px); /* efek blur */
    background: rgba(0, 40, 90, 0.5); /* biru transparan */
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 400px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.logo img {
    width: 80px;
    margin-bottom: 10px;
}

.login-box h2{
font-size:18px;
color:white;
margin-top:10px;
margin-bottom:12px;
font-weight:bold;
text-align:center;
letter-spacing:0.5px;
}

.login-box h3{
font-size:14px;
color:white;
font-weight:700;
text-align:center;
margin-bottom:28px;
letter-spacing:0.5px;
text-shadow:0 2px 5px rgba(0,0,0,0.3);
}

p {
    font-size: 13px;
    color: gray;
    margin-bottom: 20px;
    color : #ddd;
}

/* INPUT */
.input-group {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
}

.input-group i {
    margin-right: 10px;
    color: #555;
}

.input-group input {
    border: none;
    outline: none;
    background: none;
    width: 100%;
}

/* BUTTON */
button {
    width: 100%;
    background: #004aad; /* biru Yamaha */
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    cursor: pointer;
}

button:hover {
    background: #002f6c;
}

.subtitle {
    font-size: 14px;
    font-weight: bold;
    color: #020202;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(10, 10, 10, 0.5);
}

.forgot-password{
    text-align:center;
    margin-top:15px;
}

.forgot-password a{
    color:#ffffff !important;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    padding:5px 10px;
    border-radius:5px;
}

.forgot-password a:hover{
    background:rgba(255,255,255,0.15);
}
