﻿body {
    display: flex;
    flex-direction: column;
}

.form_box {
    width: 100%;
    height: 500px;
    /*border: 1px solid black;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.input_box {
    margin-top: 20px;
}

.btn_box {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

    .btn_box button {
        width: 20%;
        background-color: #02454B;
    }

.text_box {
    width: 100%;
    /*border: 1px solid red;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

    .text_box a {
        color: #017D89;
    }

        .text_box a img {
            width: 20px;
            height: 20px;
        }
