:root {
  --ColorGmt01: rgb(0, 0, 55);
  --cActiveBack: rgb(222, 255, 240);
}

html * {
  color: var(--ColorGmt01);
  font-family: Arial, Helvetica, sans-serif;
}

A {
  text-decoration: none
}
A:active, A:hover {
  color: var(--ColorActive);
}

p {
  font-size: 0.85em;
}

button{
  border: 2px solid hsl(120, 20%, 85%);
  border-radius: 9px;
  background-color: transparent;
  color: hsl(120, 20%, 85%);;
  padding: 0.75em 1.5em;
  font-size: calc(var(--fontSize) * 0.8);
  cursor: pointer;
  box-shadow: var(--shadow);
}
button:hover{
  color: black;
  background-color: var(--cActiveBack);
}

button.red{
  color: rgb(255, 102, 0)
}
button.red:hover{
  color: white;
  background-color: rgb(255, 139, 62)
}

.top-right {
  position: absolute;
  top: 5%;
  right: 5%;
}

/* --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- */

.flx {
  display: flex;
}

.gap-05r {
  gap: 0.5rem;
}

/* --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- FLEX --- */

body {
  background-color: #000;
  margin: 3em;
}

canvas {
  width: 100%;
  height: 100%;
}

#canvBackAni {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;

  z-index: -9999;
  display: block;
}

.topLogoLight {
  position: absolute;
  content: url(../../elements/LogoBallsNameColor3.svg);
  width: 75%;

  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* -------------------- LOGIN BOX -------------------- */

.login-from-logo {
  content: url(../../elements/ColorSpace_Logo.svg);
  width: 90%;
  margin: auto;
}

#login-from {
  position: absolute;
  display: flex;
  flex-flow: row;
  align-items: stretch;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 375px;
  /*padding: 20px;*/
  /*background: #ffffff;
  opacity: 0.95;*/
  /* border: 3px solid hsl(26, 100%, 50%); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.loginBox{
  padding: 40px;
  margin-top: 1em;
  margin-bottom: 1em;
  display: flex;
  flex-flow: column;
  width: 90%;
  gap: 2.5em;

  border: 2px solid hsl(0, 0%, 100%);
  border-radius: 9px;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.65), 0px 0px 20px rgba(255, 255, 255, 0.35) inset;
  /*background: linear-gradient(to bottom right, rgba(255, 236, 221, 0.95), rgba(255, 255, 255, 0.95), rgba(237, 233, 230, 0.95), rgba(255, 219, 173, 0.95));*/
  background: rgba(250, 248, 246, 0.95);
}

.loginBox p {
  font-size: 0.7rem;
  text-align: justify; 
  margin-top:-1em;
}

#login-from button {
  width: 70%;
  border-color: #000;
  color: #000;
}

.loginBoxContentRow{
  display: flex;
  flex-flow: column;
}

.loginBoxContentLine{
  display: flex;
  justify-content: start;
  gap: 1em;
  align-items: center;
}

.loginColBtn{
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.loginRowBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

label {
  font-size: 1em;
  margin: 0.5em;
}

input {
  padding: 10px;
  width: 100%;
  border: 1px solid #686868;
  border-radius: 5px;
  background-color: #ffffff;
  
}

.loginBoxContentLine input[type="checkbox"] {
  width: 15px;

  appearance: none; /* Remove default styling */
  -webkit-appearance: none; /* For Safari */
  border: 1px solid #686868;
  background-color: white;
  border-radius: 50%;
}

.loginBoxContentLine input[type="checkbox"]:checked {
  background-color: black;
}

