main {
  
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;

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

    gap: 3rem;
    position: relative;
}

.logo {

    height: 2rem;
    width: 12.5rem;

    position: absolute;
    margin: 2rem;

    top: 0;
    left: 0;
}

main .title {

    display: flex;
    flex-direction: column;

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

    gap: 0.5rem;
}

main .title h1 {

    color: #3d3d3d;
    font-size: 1.75rem;
}

main .title p {

    width: 25rem;

    font-weight: 500;
    text-align: center;
}

main form {

    width: 22rem;
    display: flex;

    gap: 0.75rem;
    flex-direction: column;
}

main form input {

    height: 3rem;
    padding: 1rem;

    border-radius: 0.5rem;
    border: 0.075rem solid rgb(196, 196, 196);

    text-align: left;
}

main form button {

    height: 3rem;
    font-weight: bold;

    border-radius: 0.5rem;
    margin-top: 0.5rem;

    font-size: 1rem;

    background-color: #c62e4f;
    color: #ffff;

    border: none;
    cursor: pointer;

    transition: background-color 0.25s ease;
}

main form button:hover {

    background-color: #573FEA;
}

main .error {

    background-color: #f8d7da;
    border-left: 0.15rem solid #ff3d4e;

    color: #802028;
    padding: 0.75rem;

    font-weight: 400;
    border-radius: 0 0.5rem 0.5rem 0;
}

@media (max-width: 450px) {

    main form {
    
        width: 80%;
    }

    main .title p {

        width: 80%;
    }    
}
