body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
}

img {
    max-height: 90vh;
    margin: 4vh;
}

a {
    text-decoration: none;
    color: #D65A5D;
    font-family: 'Lato', sans-serif;
}

button {
    background-color: #D65A5D; /* Green */
    border: none;
    border-radius: 0px 4px 4px 0px;
    color: white;
    width: 81px;
    height: 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8em;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    font-family: 'Lato', sans-serif;
}

label {
    vertical-align:middle;
}

p {
    margin: 2px;
    font-family: 'Lato', sans-serif;
}

div .id_option p {
    margin-top: 5px;
}

.flex_container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form_box {
    min-width: 20vh;
    margin: auto;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
}

.text {
    font-size: 10px;
}

.id_option_container {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.id_option {
    display: inline-block;
}

.dark {
    color: #201C1C;
    font-weight: 700;
}

.light {
    color: #BAB9B9;
    font-weight: 500;
}

.check {
    accent-color: #D65A5D;
}

#id_input {
    height: 40px;
    border: 1px solid #D9D9D9;
    border-radius: 4px 0px 0px 4px;
}

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

@media (width <= 1000px) {
    .img_box img {
        height: 40vh;
        margin: 2vh;
    }
}

@media (width <= 600px) {
    .flex_container {
        flex-direction: column;
        margin: auto;
    }
}