body {
    background-color: white;
}

.is-text-align-center {
    text-align: center;
}

#make_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

form div {
    padding: 3vh 0;
}

form label {
    font-weight: bold;
    color: black;
    font-size: 2.5rem;
    padding-bottom: 3vh;
}

.input_text {
    border: solid 6px black;
    border-radius: 0.4vw;
    margin: auto;
    width: 90vh;
    height: 15vw;
    font-size: 2rem;
}

.input_url {
    border: solid 2px black;
    border-radius: 0.4vw;
    margin: auto;
    width: 30vw;
    height: 5vh;
    font-size: 1.2rem;
}

.input_text_contact {
    border: solid 6px black;
    border-radius: 0.4vw;
    margin: auto;
    width: 90vh;
    height: 15vw;
    font-size: 2rem;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 50%;
    margin: auto;
    gap: 2vw;
}

.flex img {
    width: 5vw;
    height: 5vw;
}

.submit_button {
    all: unset;
    font-weight: bold;
    text-align: center;
    color: black;

    background-color: #25b6bb;
    border-radius: 25px;

    transition: background-color 0.3s;
    cursor: pointer;

    padding: 12px 24px;

    width: 30vh;
    height: 5vh;
    margin: auto;

}

.padding_bottom {
    padding: 0 0 8vh 0;
}

.error_show {
    text-align: center;
    color: red;
    font-weight: bold;
}