*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://i.ibb.co/3mvRWkZv/Gemini-Generated-Image-hg6gk9hg6gk9hg6g.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
}

.login-box{
    width:100%;
    max-width:400px;
    background:#c7ea3a;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.logo{
    text-align:center;
    margin-bottom:25px;
}

.logo h1{
    color:#4067cc;
    font-size:28px;
}

.logo p{
    color:#777;
    margin-top:5px;
}

.input-group{
    margin-bottom:15px;
}

.input-group label{
    display:block;
    margin-bottom:6px;
    color:#444;
    font-size:14px;
}

.input-group input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:16px;
}

.input-group input:focus{
    border-color:#35ffdd;
}

.btn-login{
    width:100%;
    padding:13px;
    border:none;
    border-radius:10px;
    background:#f14c10;
    color:white;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.btn-login:hover{
    opacity:.9;
}

.footer{
    text-align:center;
    margin-top:20px;
    color:#170202b5;
    font-size:13px;
}