:root {
    
    --main-bg-color: #382a2a;
    --header-bg-color: #777777;
    --form-bg-color: grey;
    --link-hover-color: white;
    --bg-white: #ffffff;

    --bg-color-odd-value: #150d44;
    --color-odd-value: #fefefe;    
    --bg-color-even-value: #310606;
    --color-even-value: #fefefe; 

    --blue-500: #2c2b8d;
    --blue-700: #282046;
    --blue-900: #120a30;

    --white: #ffffff;
    --black: #000000;
    --red: #6e0c0c;
    --blue: #1d1f50;
    --green: #0c3811;
    --orange: #8d510c;
    --gray: #9c9c9c;
    --gray-100: #bebebe;
    --gray-300: #9b9b9b;
    --gray-500: #696868;
    --gray-700: #4b4a4a;
    --gray-900: #292929;

    --bg-color-nav: #274269;
    --color-border-center: #5d8ed8;
    --font-color: rgb(207, 215, 231);

}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
a, a:visited, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}


html {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}



a:hover{
    color: var(--link-hover-color);
}



html, body{
    width: 100%;
    height: 100%;
    background-color: var(--white);
}

body{
    display: flex;
    flex-direction: column;
}

.body-guest{
    background-color: black;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    flex-grow: 1;
    padding: 8px;
}



.form-section{
    /*
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 12px;
    padding: 8px;
    background-color: var(--gray-500);
    min-width: 250px;
    border-radius: 14px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    z-index: 2;*/

    position: absolute;
    gap: 12px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    padding: 24px;
}

.form-section-user-create{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 12px;
    padding: 8px;
    background-color: var(--gray-500);
    min-width: 250px;
    border-radius: 14px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    z-index: 2;
}


.form-section > h2,
.form-section-user-create > h2 {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}


.form-section > form,
.form-section-user-create > form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-section > form label,
.form-section > h2{
    color: var(--black);
}
.form-section-user-create > form label,
.form-section-user-create > h2{
    color: var(--white);
}

.form-section > form > .form-group,
.form-section-user-create > form > .form-group{
    display: flex;
    flex-direction: column; 
}

.form-button{
    width: fit-content;
    padding: 2px;
    align-self: center;
}



.body-privacy-policy, .shader-canvas{
    background-color: #274269;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

.main-privacy-policy{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: start;
    height: auto;
    width: 70%;
    height: auto;
    color: var(--font-color);
    background-color: var(--bg-color-nav);
    margin: 24px 0px 24px 0px;
    z-index: 2;
}

.main-privacy-policy ul {
    list-style-type: lower-greek;
    margin: 0 0 0 8px;
    padding: 0 0 0 20px;
}

.main-privacy-policy h1 {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin: 24px 0px 24px 0px;

    border-width: 0 0 2px 0;
    border-style: solid;
    -o-border-image: linear-gradient( to right, var(--bg-color-nav), var(--color-border-center), var(--bg-color-nav) ) 1;
    border-image: linear-gradient( to right, var(--bg-color-nav), var(--color-border-center), var(--bg-color-nav) ) 1;


}
.main-privacy-policy h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 16px 0px 8px 0px;
}   

canvas {
	object-fit: contain;
	width: 100% !important;
	height: 100% !important;
	image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-crisp-edges;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;

}


.altcha-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.access-confirmation,
.user-access-error,
.invite-link-error {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    padding: 24px;
}

.access-confirmation a,
.user-access-error a,
.invite-link-error a {
    font-weight: 800;
}

.privacy-policy-acceptance,
.user-access-error-message,
.invite-link-error-message{
    text-align: center;
    margin: 12px 0px 12px 0px;
}
.verify-button{
    margin: 12px;
}


/*RESPONISVE*/

@media (max-width: 600px) {

    .form-section {
      width: 60%;
    }
    .form-section h3,
    .form-section label,
    .form-section input {
        font-size: 16px;
    }

    .access-confirmation{
        width: 60%;
    }
}