/* GENERIC STYLES */
.static-position {

    position: static !important;
}

/* MAIN */
main {
  
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;

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

    gap: 3rem;
    position: relative;
}

/* HEADER */
main .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;
}

/* FORM */  
main form {

    width: 90%;
    max-width: 35rem;

    display: flex;
    flex-direction: column;
}

main form input {

    height: 3rem;
    font-size: 1rem;

    margin-bottom: 0.75rem;
    padding-left: 0.5rem;

    border: 0.075rem solid rgb(196, 196, 196);
}

main form button {

    height: 4rem;
    margin-top: 0.5rem;

    display: flex;
    gap: 1rem;

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

    background-color: #df2452;
    border: none;

    padding: 1rem;

    transition: background-color .3s ease;
    cursor: pointer;
}

main form button:hover {

    background-color: #573FEA;
}

main form button i {
    
    color: white;
    font-size: 1.25rem;
}

main form button span {

    color: white;

    font-size: 1.025rem;
    font-weight: 600;
}

@media (max-width: 450px) {

    main form {
    
        width: 80%;
    }

    main .title p {

        width: 80%;
    }    
}