*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#1a120b;
}

.container{
    width:400px;
    background:#241812;
    padding:40px;
    border-radius:20px;
    color:white;
}

.container h2{
    text-align:center;
    margin-bottom:25px;
}

input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:none;
    border-radius:10px;
}

button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    background:#c69b6d;
    cursor:pointer;
    font-weight:bold;
}

button:hover{
    opacity:0.9;
}

p{
    text-align:center;
    margin-top:15px;
}

a{
    color:#c69b6d;
    text-decoration:none;
}