body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
    height: 100vh;
    background: linear-gradient(135deg, #d38312, #a83279);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 320px;
    text-align: center;
    color: white;
}

.login-box .avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin: 12px 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    box-sizing: border-box;
}

.login-box input::placeholder {
    color: #ddd;
}

.login-box .remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.login-box button {
    background: white;
    color: #333;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
}

.login-box a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
}

.icon-input {
    position: relative;
}

.icon-input .icon-img {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.icon-input input {
    padding-left: 35px;
}