main > .content > .table{
    position: relative;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

main > .content > .table > form {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}

main > .content > .table > form > div {
    position: relative;
    padding: 10px 0;
    width: 45%;
    height: 7.5vw;
    max-height: 106px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

main > .content > .table > form > div > label {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    font-size: small;
}

main > .content > .table > form > div > label > input {
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 50%;
    font-size: large;
}

main > .content > .table > p{
    position: relative;
    margin: 20px 0;
    width: 100%;
    height: 2.5vw;
    max-height: 36px;
    font-size: medium;
    color: #a61b29;
}

main > .content > .table > button {
    position: relative;
    margin: 20px 0;
    width: 30%;
    height: 4vw;
    max-height: 56px;
    border: none;
    background-color: #a61b29;
    color: white;
    border-radius: 15vw;
    font-size: large;
    transition: transform 0.1s linear;
}

main > .content > .table > button:hover{
    transform: scale(1.01);
}

main > .content > .table > span {
    position: relative;
    padding: 20px 0;
    margin-bottom: 20px;
    font-size: xx-large;
}