body {
    font-family: "Poppins", sans-serif;
    margin: 0;
}

.main-welcome {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    color: #fff;
}

.bg-beranda-utama {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) blur(10px);
    z-index: -1;
}

.wrap-login {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.wrap-login img {
    display: block;
    margin: 0 auto 15px;
}

.wrap-login h2 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.wrap-login span {
    color: #e0e0e0;
    font-size: 14px;
}

.form-login {
    width: 100%;
    margin-top: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.login-input {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 12px 40px 12px 14px; /* padding kanan lebih besar utk icon */
    border-radius: 10px !important;
    width: 100%;
    color: #fff;
    font-size: 14px;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.login-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.35);
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.toggle-password i {
    color: #0d6efd;
}

.btn-login {
    background: #05153b;
    border: none;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s ease;
}

.btn-login:hover {
    background: #084298;
}

.link-kembali {
    display: inline-block;
    margin-top: 18px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.link-kembali:hover {
    color: #b6cbfd;
}
