body
{
    background-color: #f2f3f5;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.div-form
{
    width: 350px;
    height: auto;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: -2px 2px 8px #000;
}
.div-form h1
{
    margin-bottom: 25ox;
    color: #212121;
    font-size: 25px;
}
.div-form .inp
{
    margin-bottom: 15px;
}
.div-form .inp input
{
    width: 100%;
    margin-top: 8px;
    outline: none;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #33333346;

}
.div-form .inp input:focus
{
    box-shadow: 0px 0px 4px #000;
}
.div-form .inp label
{
    font-size: 14px;
    color: #333;
}
.div-form button
{
    width: 100%;
    margin: 20px 0;
    padding: 12px 0;
    font-size: 18px;
    font-weight: bold;
    background: #212121;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}
.div-form .login
{
    text-align: center;
}
.div-form .login a
{
    text-decoration: none;
    font-weight: bold;
    color: #333;
}