*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{

height:100vh;

background:url("mafia-bg.jpg");

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

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

}

.overlay{

position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);

}

.container{

position:relative;
text-align:center;
color:white;
width:90%;
max-width:400px;

}

.title{

color:#ff2a2a;
font-size:40px;
margin-bottom:30px;

}

.card{

background:#111;
padding:25px;
margin:20px 0;
border-radius:10px;
box-shadow:0 0 20px rgba(0,0,0,0.6);

}

.card h2{

margin-bottom:15px;

}

input{

width:100%;
padding:12px;
margin:8px 0;
border:none;
border-radius:5px;

}

button{

width:100%;
padding:12px;
margin-top:10px;

background:#ff2a2a;
color:white;
border:none;
border-radius:5px;
font-size:16px;
cursor:pointer;

}

button:hover{

background:#ff0000;

}

@media(max-width:600px){

.title{
font-size:32px;
}

.card{
padding:20px;
}

}