body{
    margin:0;
    padding:0;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
    linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.35)
    ),
    url("../images/login-bg.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    font-family:'Poppins',sans-serif;
}

.login-container{
    width:90%;
    max-width:400px;
    background:white;
    border-radius:20px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.logo{
    width:220px;
    display:block;
    margin:0 auto 20px auto;
}

.title{
    text-align:center;
    font-size:24px;
    font-weight:bold;
    color:#111111;
}

.subtitle{
    text-align:center;
    color:#666;
    margin-bottom:25px;
}

label{
    font-weight:600;
    display:block;
    margin-bottom:8px;
}

input{
    width:100%;
    height:50px;
    border:1px solid #ddd;
    border-radius:12px;
    padding-left:15px;
    font-size:16px;
    margin-bottom:20px;
    box-sizing:border-box;
}

button{
    width:100%;
    height:55px;
    border:none;
    border-radius:12px;
    background:#F26A21  ;
    color:white;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}

button:hover{
    background:#d95a15;
}

.footer{
    text-align:center;
    margin-top:20px;
    color:#777;
    font-size:14px;
}

.login-container{
    width:420px;

    background:rgba(255,255,255,0.95);

    backdrop-filter:blur(10px);

    border-radius:24px;

    padding:40px;
}

.login-container{
    box-shadow:
    0 20px 50px rgba(0,0,0,0.25);
}

.login-container{
    border:1px solid rgba(255,255,255,0.3);
}