body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('/static/img/background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    width: 350px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.login-box h2 {
    margin-bottom: 25px;
    font-weight: bold;
}

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

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    outline: none;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
}

.remember-forgot {
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-login {
    width: 100%;
    background-color: #fff;
    color: #333;
    border-radius: 25px;
    padding: 10px;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #e0e0e0;
}