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

body{
    min-height: 100vh;
    height: 100%;
    display: grid;
    place-items: center;
}

form{
    width: 100%;
    max-width: 280px;
    padding: 2rem 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
}

form img.logo{
    border-radius: 0.75rem;
    display: block;
}

form input{
    width: 100%;
    border-radius: 6px;
    border: 1px solid #021153;
    padding: 8px 16px;
    margin-bottom: 1.25rem;
}

form h1{
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
}

form button[type='submit']{
    width: 100%;
    padding: 8px 16px;
    color: white;
    border-radius: 6px;
    border: 0;
    background-color: green;
    transition: all 0.3s;
    cursor: pointer;
}

form button[type='submit']:hover{
    background-color: rgb(0, 168, 0);
}

form a{
    display: block;
    margin-top: 0.5rem;
    align-self: flex-start;
    text-decoration: none;
    color: rgb(0, 132, 255);
}