* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

input, select, button {
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url('/images/background.jpg') no-repeat center center/cover;
    background-size: cover;
    filter: blur(6px);
    z-index: -1;
}

.login-card {
    background: #f4efe7;
    padding: 40px;
    border-radius: 20px;
    width: 350px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: 2px solid #D3BE90;
}

.logo img {
    width: 120px;
    height: 120px;       /* tambahin ini */
    margin-bottom: 10px;
    border-radius: 50%;  /* ini bikin bundar */
    object-fit: cover;   /* biar nggak gepeng */
}

.logo span {
    display: block;
    font-size: 14px;
    color: #a67c52;
}

h1 {
    margin: 20px 0;
    color: #1F2A35;
}

label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    color: #19343B;
}

.input-box {
    display: flex;
    align-items: center;
    background: #FFF8F8; 
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1.5px solid black; 
}

.input-box .icon {
    margin-right: 10px;
}

.input-box input {
    border: none;
    outline: none;
    background: none;
    width: 100%;
}

.input-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

hr {
    margin: 15px 0;
    border: 0.5px solid #ccc;
}

.register {
    font-size: 14px;
    color: #777;
}

.register a {
    color: #2c3e3e;
    font-weight: bold;
    text-decoration: none;
}

button {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #c9a46c;
    color: #1F2A35;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #b8935f;
}

/* HILANGKAN WARNA BIRU AUTOFILL CHROME */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #FFF8F8 inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.password-box {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    cursor: pointer;
    color: #555;
}

.toggle-password:hover {
    color: #000;
}

.title-wrapper{
    width:100%;
    display:flex;
    justify-content:flex-end;
}

.lupa-password{
    display:block;
    width:100%;
    text-align:right;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

input[type="password"]::-webkit-credentials-auto-fill-button {
    display: none !important;
}

input[type="password"] {
    -webkit-appearance: none;
    appearance: none;
}

