* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

html, body {
    height: 100%;
}

/* Background */
.background {
    width: 100%;
    height: 100%;
    background-image: url("flower.png"); /* بدون / */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.25);
}

/* Center Box */
.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    backdrop-filter: blur(3px);
}

/* Profile Image */
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Username */
.username {
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Fingerprint Icon */
.fingerprint {
    font-size: 80px;
    color: white;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fingerprint:hover {
    transform: scale(1.1);
}

/* Hint Text */
.hint {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 12px;
}

/* Sign-in options */
.signin-options {
    font-size: 15px;
    color: #a7c7ff;
    text-decoration: none;
}

.signin-options:hover {
    text-decoration: underline;
}

/* Bottom Bar */
.bottom-bar {
    position: absolute;
    bottom: 20px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: white;
}

.bottom-bar span {
    cursor: pointer;
    font-size: 16px;
}

.material-icons {
    font-size: 22px;
}
.password-input {
    width: 260px;
    padding: 10px;
    font-size: 15px;
    border: none;
    outline: none;
    background: rgba(0,0,0,0.4);
    color: white;
    border-bottom: 2px solid #4da3ff;
    margin-top: 15px;
}

.password-input::placeholder {
    color: #ccc;
}

.login-btn {
    margin-top: 15px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.login-btn .material-icons {
    font-size: 28px;
}
.password-wrapper {
    position: relative;
    width: 260px;
    margin-top: 15px;
}

.password-input {
    width: 100%;
    padding: 10px 40px 10px 10px; /* مساحة للسهم */
    font-size: 15px;
    border: none;
    outline: none;
    background: rgba(0,0,0,0.4);
    color: white;
    border-bottom: 2px solid #4da3ff;
}

.password-input::placeholder {
    color: #ccc;
}

.arrow {
    position: absolute;
    right: 5px;
    top: 60%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    color: white;
}