@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
:root {
    --accent-color: #6200ee;
    --main-red-color: #cf112d;
    --p-color: #100f0f;
    --light-gray: #8a8787;
}

* {
    margin: 0;
    padding: 0;
    font-family: serif;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    margin: 0;
}

h1.lead-text {
    color: var(--main-red-color);
    text-transform: uppercase;
    font-size: 2vh;
}

p.p-login {
    color: var(--p-color);
    margin: 15px 0;
}

.form-container {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fafafa;
}

.form-login {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    /* gap: 4rem; */
    /* width: 95%;
    max-width: 300px; */
    /* background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.5rem;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 8%), 0 0 15px 0 rgb(0 0 0 / 2%), 0 0 20px 4px rgb(0 0 0 / 6%); */
    margin: 1rem;
    width: 70%;
    max-width: 400px;
}

.input-container {
    /* background-color: #f5f5f5; */
    position: relative;
    /* border-radius: 4px 4px 0 0; */
    /* height: 56px; */
    transition: background-color 500ms;
    margin-bottom: 4rem;
}

/* .input-container:hover {
    background-color: #ececec;
}

.input-container:focus-within {
    background-color: #dcdcdc;
} */

label {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 0, 0, 0.5);
    transform-origin: top left;
    user-select: none;
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1), top 500ms;
    text-transform: uppercase;
    font-size: 2vh;
}

input, select {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    /* background: transparent; */
    /* caret-color: var(--accent-color); */
    border: 2px solid var(--main-red-color);
    border-radius: 12px;
    /* border-bottom-color: rgba(0, 0, 0, 0.42); */
    color: rgba(0, 0, 0, 0.87);
    transition: border 500ms;
    padding: 20px 16px 6px;
    font-size: 2vh;
    text-transform: uppercase;
    text-align: center;
    /* height: 5vh; */
    font-size: 2vh;
    position: absolute;
    transform: translate(-50%, -50%);
    padding: 2.2vh;
}

select {
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    background: white;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' style='fill: rgb(177,29, 46);' /></g></svg>");
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 60%;
}

input:focus {
    outline: none;
    /* border-bottom-width: 2px; */
    /* border-bottom-color: var(--accent-color); */
}

input:focus+label {
    /* color: var(--accent-color); */
}

input:focus+label, input.is-valid+label {
    /* transform: translate(-50%, -100%) scale(0.7); */
}

select:focus+label, select.is-valid+label {
    /* transform: translate(-50%, -100%) scale(0.7); */
}

.text-center {
    text-align: center;
}

.hide {
    display: none;
}

.btn-container, button {
    border-radius: 5vw;
    cursor: pointer;
}

.btn-container {
    display: flex;
    width: auto;
    padding: 0.3vw;
    background-color: var(--main-red-color);
    border: none;
    max-width: max-content;
    margin: auto;
}

.btn {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 40px;
    text-transform: uppercase;
    width: 100%;
}

.gold-logo {
    width: auto;
    max-width: 70px;
    max-height: 45px;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: white;
    display: none;
    justify-content: center;
    align-items: center;
}

.overlay p {
    font-size: 4.5vw;
    color: var(--main-red-color);
}

.tco-text {
    display: none;
    color: white;
    font-size: 3vw;
    margin-bottom: 1vh;
}