@import url('https://fonts.googleapis.com/css?family=Roboto');

:root {
    --bg: url("/dash/img/tiles/bg.jpg");
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url("assets/fonts/icons.woff2") format('woff2');
}

body {
    padding: 30px;
    font-family: sans-serif;
    font-size: 24px;
    background: var(--bg);
}

* {
    font-family: sans-serif;
    font-size: 24px;
}

label {
    color: white;
}

h1 {
    font-family: sans-serif;
    color: red;
    text-align: center;
    font-size: 24px;
    margin-top: 16px;
    font-weight: bold;
}

.uid-start {
    font-size: 20px;
    color: gray;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 5px;
}

.uid-input {
    padding: 10px;
    height: 100%;
}

.uid-container {
    display: flex;
    justify-content: center;
    height: 35px;
    width: 100%;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); */
    /* border: 3px solid gray;
    border-radius: 5px; */
    width: 100%;
    max-width: 800px;
    height: 100%;
    margin: auto;
    margin-bottom: 15px;
}

.page {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 3px solid gray;
    border-radius: 5px;
    display: flex;
    width: 90%;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.page-visible {
    display: block;
    opacity: 1;
}

.page-invisible {
    display: none;
    opacity: 0;
}

.prim-btn-container {
    display: flex;
    justify-content: center;
}

.prim-btn {
    background: #4bb74d;
    color: white;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 5px;
    width: 200px;
    height: 50px;
    margin: 5px;
}

.input-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    padding: 2px;
}

.hr {
    border-bottom: 1px dashed white;
    height: 0px;
    width: 100%;
}

.warning {
    color: white;
    text-align: center;
    font-size: 14px;
}

.radio-input {
    position: absolute;
    visibility: hidden;
    display: none;
}

.radio-label {
    color: white;
    display: inline-block;
    cursor: pointer;
    padding: 5px 20px;
    transition: all 0.2s;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.radio-input:checked + .radio-label {
    background: rgba(200, 200, 200, 0.5);
}

.radio-label + .radio-input + .radio-label {
}

.radio-group {
    border: solid 3px #675f6b;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: fit-content;

    /* blurred bg */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.form-input {
    width: 100px;
    height: fit-content;
    padding: 5px;
    font-size: 16px;
}

.form-label {
    font-size: 16px;
    color: white;
    width: 100%;
    flex-grow: 1;
}

.continue-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}