div.fpassword {
    display: flex;
    flex-direction: column;

    align-items: center;
    width: 482px;
}

div.fpassword > h1 {
    
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;

    letter-spacing: 1px;
    
    text-transform: uppercase;

    color: var(--gray);

    margin-top: 48px;
}

div.fpassword > p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.3px;
    margin-top: 20px;

    color: var(--gray);
}

div.fpassword > div.email-input {
    margin-bottom: 48px;
    margin-top: 32px;
}

div.fpassword > div.email-input > input {
    height: 48px;
    width: 482px;
    
}
div.fpassword > button {
    width: 482px;
    margin-bottom: 112px;
}

@media only screen and (max-width: 1024px) {

    div.fpassword {
        width: 100%;
    }

    div.fpassword > div.email-input{
        width: 100%;
    }

    div.fpassword > div.email-input > input {
        width: 100%;
    }

    div.fpassword > button {
        width: 100%;
    }
}