/* Login */
body {
    height: 100vh; /* Mengatur tinggi body sesuai dengan tinggi viewport */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("http://localhost/ibuki/src/data/a/1.png");  
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    overflow: hidden;
}

.logo img {
    width: 250px;
    height: 192px;
    margin-bottom: 20px; /* Jarak antara logo dan input */
}

.login-form {
    max-width: 300px;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.3); 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.form-floating {
    margin-bottom: 10px;
}

.smaller-input {
    font-size: 14px;
}

/* Login */
