body{
    background-color: #121111;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

}
.container {
    background-color: #2b2a2a;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    width: 100%;
    padding: 40px 30px;
    color: white;
}

h2{
    margin-bottom: 30px;
    color: #cecbcb;
    font-weight: 700;
}
input{
    width:100%;
    padding: 14px;
    border: none;
    border-radius: 5px;
    background-color: #3a3939;
    box-sizing: border-box;
    margin-top: 12px;
    margin-bottom: 12px;
    color: white;

}

button{
    background-color: rgba(220,53,81);
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 16PX;

}

button:hover{
    background-color: rgba(220,53,81);
}
.bottom-text{
    margin-top: 20px;
}
.bottom-text span{
    color: #666;
}

.bottom-text a{
    color: rgba(220,53,81);
    text-decoration: underline;
    transition: color 0.3s;
    font-weight: 200;
}

.bottom-text a:hover{
    color: rgba(220,53,81);
}