html {
    font-size: 1px;
}

body {
    @media (min-width: 1000px) {
        font-size: 25rem;
    }
    @media (max-width: 999px) {
        font-size: 16rem;
    }
    font-family: arial;
}

.click {
    font-size: inherit;
    font-family: inherit;
    border: none;
    text-decoration: none;
    background-color: red;
    color: white;
    padding: 5rem;
    border-radius: 5rem;
    margin-right: 20rem;
    cursor: pointer;
}

.click:hover {
    background-color: white;
    color: red;
}

.no_click {
    font-size: inherit;
    font-family: inherit;
    border: none;
    text-decoration: none;
    background-color: lightpink;
    color: white;
    padding: 5rem;
    border-radius: 5rem;
    margin-right: 20rem;
    cursor: pointer;
}

#container {
    display: flex;
}

@media (min-width: 1000px) {
    #container {
        flex-direction: row;
    }

    #left {
        width: 25%;
    }

    #center {
        width: 50%;
    }

    #right {
        width: 25%;
    }
}

@media (max-width: 999px) {
    #container {
        flex-direction: column;
    }

    #left {
        order: 2;
    }

    #center {
        order: 1;
    }

    #right {
        order: 3;
    }
}

#verification_code_input {
    font-size: 25rem;
    width: 100rem;
}

.input_box {
    @media (min-width: 1000px) {
        font-size: 25rem;
    }
    @media (max-width: 999px) {
        font-size: 16rem;
    }
}

.block {
    border-top: 5rem solid red;
    padding: 10rem;
}

#message_box {
    position: fixed;
    bottom: 20rem;
    right: 20rem;
    width: 300rem;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10rem;
    z-index: 1000;
}

.message {
    background-color: #333;
    color: white;
    padding: 10rem;
    border-radius: 6rem;
    box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.3);
    animation: fadein 0.3s ease;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(10rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.color_button {
    cursor: pointer;
    border-radius: 10rem;
    text-decoration: none;
    padding: 10rem;
    font-size: inherit;
    border: none;
    font-weight: bolder;
    color: white;
    background: linear-gradient(to right, red, orange);
    text-shadow: 2px 2px 4px black;
}

.color_button:hover {
    color: black;
    background: white;
    text-shadow: none;
}