body {
    margin:0;
    font-family: 'Segoe UI', sans-serif;
}

/* LOGIN */
.login-page {
    background: url('../img/bg-login.jpg') no-repeat center;
    background-size: cover;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-box {
    background: rgba(255,255,255,0.95);
    padding:30px;
    border-radius:12px;
    width:90%;
    max-width:350px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.logo {
    width:80px;
    margin-bottom:10px;
}

input {
    width:100%;
    padding:10px;
    margin:8px 0;
    border-radius:8px;
    border:1px solid #ddd;
}

button {
    width:100%;
    padding:12px;
    background:#0ea5e9;
    border:none;
    color:white;
    border-radius:8px;
    font-weight:bold;
}

/* MOBILE */
@media(max-width:600px){
    .login-box {
        padding:20px;
    }
}