*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background: url("images/login-bg.jpg") no-repeat center center;
    background-size: cover;
}

/* Dark overlay */
body::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

/* Glass effect login card */
.login-container{
    position: relative;
    z-index: 1;

    width: 380px;
    padding: 40px;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;

    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

h2{
    text-align: center;
    color: white;
    margin-bottom: 25px;
    font-size: 32px;
}

.form-group{
    margin-bottom: 20px;
}

label{
    display: block;
    color: white;
    margin-bottom: 8px;
    font-weight: 500;
}

input{
    width: 100%;
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.2);
    color: white;
}

input::placeholder{
    color: #eee;
}

button{
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;

    background: linear-gradient(45deg,#4facfe,#00f2fe);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

button:hover{
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,242,254,0.5);
}

.form-footer{
    margin-top: 20px;
    text-align: center;
}

.form-footer a{
    color: white;
    text-decoration: none;
}

.form-footer a:hover{
    text-decoration: underline;
}

.container {
    width: 450px;
    padding: 30px;
}

.links {
    margin-top: 20px;
    text-align: center;
}

.links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.links a:hover {
    text-decoration: underline;
}