.Error_middle_screen {
    background: #516069;
    height: 28vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
}

.Error_details_container {
    background: #516069;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:flex-start;
    min-height: 62vh;
}

.Error_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.Error_detail {
    color: var(--heading, #E9E9E9);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    opacity: 0.800000011920929;
}

.White_button_error_page {
    height: 54px;
    background-color: #FFF;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    width: 100%;
    margin-top: 20px;
}

.Grey_button_error_page {
    height: 54px;
    background-color: transparent;
    border-radius: 12px;
    border: 1px solid #FFF;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.Error_page_white_button {
    color: #3857FF;
    text-align: center;
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; 
}

.Error_page_grey_button {
    color: #FFF;
    text-align: center;
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; 
}

.Field_error {
    font-family: "Manrope";
    font-size: 14px;
    font-weight: "500";
    font-style: "normal";
    line-height: 20px;
    letter-spacing: 0;
    text-align: "left";
    color: #ec1e30
}

.Address_validation_error {
    margin-bottom: 20px;
}

@media (min-width : 768px) {
    .Error_body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        background: #516069;
    }

    .Error_details_container {
        /* width: 100%; */
        width: 28vw;
    }

    .Error_middle_screen {
        margin-top: 20vh;
        width: 30vw;
    }
}

