*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    background-image:url('https://wallpapercave.com/uwp/uwp4724313.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    min-height:100vh;
}

h1{
    color:white;
    text-shadow:2px 2px 8px black;
    margin-bottom:20px;
}

.login-container{
    width:420px;

    background:rgba(255,255,255,0.95);

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,0.4);

    text-align:center;
}

input{
    width:100%;

    padding:12px;

    margin-bottom:15px;

    border:1px solid #ccc;

    border-radius:8px;
}

input:focus{
    outline:none;

    border-color:#28a745;

    box-shadow:0 0 8px rgba(40,167,69,0.4);
}

button{
    width:100%;

    padding:12px;

    background:#28a745;

    color:white;

    border:none;

    border-radius:8px;

    cursor:pointer;

    font-size:16px;

    transition:0.3s;
}

button:hover{
    background:#1e7e34;
}

a{
    display:block;

    margin-top:15px;

    text-decoration:none;

    color:#28a745;

    font-weight:bold;
}