main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.forgot-container {
    margin: 5rem auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    & h2, .form-forgot {
        width: 100%;
        max-width: 550px;
    }

    & h2 {
        margin: 0 0 3rem 0;
        align-self: flex-start;
    }

    .form-forgot {
        width: 100%;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        white-space: normal;
        line-height: 2rem;
        border: 0.5px solid rgba(0, 0, 0, 0.192);
        border-radius: 5px;
        box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.2);
        

        .form-fields {
            width: 100%;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
        }

        .form-buttons {
            width: 100%;
            margin: 1rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

    }
}