:root {
    --fonts: "EYInterstate", "Noto Sans", Arial;
}

@font-face {
    font-family: "EYInterstate";
    src: url("fonts/EYInterstate-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "EYInterstate";
    src: url("fonts/EYInterstate-Light.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "EYInterstate";
    src: url("fonts/EYInterstate-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

* {
    font-family: "EYInterstate", "Noto Sans", Arial;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: rgb(46, 46, 56);
    min-height: min-content;
    margin: 0;
}

.lng {
    position: absolute;
    left: 1rem;
    top: 0.3rem;
}

.lng img {
    height: 2rem;
    cursor: pointer;
}

.button {
    border: 1px solid black;
    border-radius: 1rem;
    position: relative;
    transition: 0.5s;
    z-index: 1;
    overflow: hidden;
    padding: 0.5rem 2rem;
    font-size: 25px;
    border-radius: 1rem;
    background-color: transparent;
    transition: 0.5s;
    width: auto;
    height: auto;
}

.next_button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

body {
    font-family: Arial, sans-serif;
}

.modal {
    display: none;
    position: fixed;
    z-index: 333;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: fit-content;
    max-width: 50%;
}

.required_star {
    color: #e74c3c;
    margin-left: 0.25rem;
}

.closeModal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.closeModal:hover,
.closeModal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modal-buttons * {
    margin-right: 0.5rem;
}

.modal-buttons .welcome_button {
    justify-content: center;
    align-items: center;
    border: 1px solid #1a1a24;
    font-weight: bold;
    padding: 1rem 2rem;
}

.error_message {
    color: #cb4335;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    white-space: normal;
    word-wrap: break-word;
    width: 100%;
    overflow-wrap: break-word;
}

.error_icon {
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.25rem;
    display: flex;
    margin-top: 0.125rem;
}

.input_group {
    width: 400px;
}

.error_message span {
    display: flex;
}

.hint-icon {
    height: 1rem;
    width: 1rem;
    margin-right: 1rem;
}