@font-face {
  font-family: 'Baloo2';
  src: url('assets/fonts/Baloo2-Regular.woff2') format('woff2'),
       url('assets/fonts/Baloo2-Regular.woff') format('woff'),
       url('assets/fonts/Baloo2-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Baloo2';
  src: url('assets/fonts/Baloo2-Medium.woff2') format('woff2'),
       url('assets/fonts/Baloo2-Medium.woff') format('woff'),
       url('assets/fonts/Baloo2-Medium.ttf') format('truetype');
  font-weight: 500; 
  font-style: normal;
}

@font-face {
  font-family: 'Baloo2';
  src: url('assets/fonts/Baloo2-SemiBold.woff2') format('woff2'),
       url('assets/fonts/Baloo2-SemiBold.woff') format('woff'),
       url('assets/fonts/Baloo2-SemiBold.ttf') format('truetype');
  font-weight: 600; 
  font-style: normal;
}

@font-face {
  font-family: 'Baloo2';
  src: url('assets/fonts/Baloo2-Bold.woff2') format('woff2'),
       url('assets/fonts/Baloo2-Bold.woff') format('woff'),
       url('assets/fonts/Baloo2-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Baloo2';
  src: url('assets/fonts/Baloo2-ExtraBold.woff2') format('woff2'),
       url('assets/fonts/Baloo2-ExtraBold.woff') format('woff'),
       url('assets/fonts/Baloo2-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Baloo2', sans-serif;
  font-size: 16px;
  overflow: hidden;
  background: #0a0a0a;
}

main{
  width: 1366px;
  height: 768px;
  display: flex;
  align-items: start;
  background: #0a0a0a;
  overflow: hidden;
}

.main-container {
  display: flex;
  background: linear-gradient(45deg,#171717,#262626);
  background-size: 180% 180%;
  overflow: hidden;
  width: 1366px;
  height: 480px;
  user-select: none !important;
}

.login-container{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  width: 100%;
  background-color: #FFF;
  position:relative;
}

.w-full{
  width: 100%;
}

.h-full{
  height: 100%;
}

.font-bold{
  font-weight: 700;
}

.text-base{
  font-size: 16px;
}

.text-lg{
  font-size: 18px;
}

.text-xl{
  font-size: 20px;
}

.text-2xl{
  font-size: 24px;
}

.text-3xl{
  font-size: 28px;
}

.text-4xl{
  font-size: 32px;
}

.text-5xl{
  font-size: 36px;
}

.text-6xl{
  font-size: 40px;
}

.mb-1{
  margin-bottom: 4px;
}

.mb-2{
  margin-bottom: 8px;
}

.mb-3{
  margin-bottom: 12px;
}

.mb-4{
  margin-bottom: 16px;
}

.mb-5{
  margin-bottom: 20px;
}

.mb-6{
  margin-bottom: 24px;
}

.mr-1{
  margin-right: 4px;
}

.mr-2{
  margin-right: 8px;
}

.mr-3{
  margin-right: 12px;
}

.mr-4{
  margin-right: 16px;
}

.mr-5{
  margin-right: 20px;
}

.mr-6{
  margin-right: 24px;
}

.ml-4{
  margin-right: 16px;
}
.ml-6{
  margin-right: 24px;
}

.p-1{
  padding: 4px;
}
.p-2{
  padding: 8px;
}
.p-3{
  padding: 12px;
}
.p-4{
  padding: 16px;
}
.p-5{
  padding: 20px;
}
.p-6{
  padding: 24px;
}

.flex{
  display:flex;
}

.flex-1{
  flex:1;
}

.flex-col{
  flex-direction:column;
}

.flex-row{
  flex-direction:row;
}

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

.items-start{
  align-items: start;
}

.items-end{
  align-items: end;
}

.justify-center{
  justify-content: center;
}

.justify-end{
  justify-content: end;
}

.self-stretch {
  align-self: stretch;
}

.text-white{
  color:#fff;
}

.bg-neutral-950{
  background-color: #0A0A0A;
}

.rounded-xl{
  border-radius:16px;
}


.form-control{
  font-size: 32px;
}

.form-input{
  border-radius: 6px;
  border: 1px solid #d4d4d4;
  padding: 0.5rem 1rem;
  font-size: 32px;
}

.form-input:focus{
  outline: 2px solid #525252;
  background: #fefce8;
}

.carousel-item{
  min-width: 435px;
}

.primary-btn{
  align-items: center;
  background: linear-gradient(225deg,#003ace,#4e00ce 80%);
  background-size: 300% 100%;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px 0 #4e00ce;
  display: flex;
  flex-direction: row;
  font-family: 'Baloo2', sans-serif;
  font-size: 18px;
  font-weight: 600;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  text-transform: uppercase;
  transition: all .4s ease-in-out;
  border: none;
  color: white;
  cursor: pointer;
  user-select: none;
}

.outline-btn{
  align-items: center;
  background: #0A0A0A;
  background-size: 300% 100%;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px 0 #4e00ce;
  display: flex;
  flex-direction: row;
  font-family: 'Baloo2', sans-serif;
  font-size: 18px;
  font-weight: 600;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  text-transform: uppercase;
  transition: all .4s ease-in-out;
  border: 1px solid #003ace;
  color: white;
  cursor: pointer;
  user-select: none;
}

.progressBar{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgb(46, 105, 255), rgb(112, 24, 255));
  box-shadow: rgb(78, 0, 206) 0px 2px 10px 0px;
}

/* modal */
.modal {
  display: none;
  position: fixed;
  top: 240px;
  left: 683px;
  transform: translate(-50%, -50%);
  background-color:#0A0A0A;
  color: #fff;
  padding: 24px;
  z-index: 1000;
  border-radius: 16px;
  box-shadow: 0 0 10px #00000033;
}

.modal-content {
  display: flex;
  flex-direction: column;
}

.modal-buttons button {
  margin: 0 10px;
}

.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 1366px;
  height: 480px;
  background-color: #00000080;
  z-index: 999;
}

.hide-cursor{
  cursor: none;
}

.btn-nav{
  border:none;
  background-color: transparent;
  color: white;
  cursor: pointer;
  border-radius: 12px;
  width:90px;
  height:90px;
}

.btn-nav:active{
  background-color: #515151;
}

.timeout-message{
  display: none; /* Oculto por defecto */
  position: fixed;
  top: 8px;
  left: 16px;
  width: 1366px;
  height: 480px;
  background-color: transparent; /* Fondo semitransparente */
  z-index: 2000; /* Por encima de todo */
  display: flex;
  flex-direction: column;
  text-align: left;
  color: white; /* Texto blanco */
  font-size: 16px; /* Tamaño de texto */
}

.disconnected-message {
  display: none; /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 1366px;
  height: 480px;
  background-color: rgba(0, 0, 0, 0.9); /* Fondo semitransparente */
  z-index: 2000; /* Por encima de todo */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white; /* Texto blanco */
  text-align: center;
  font-size: 24px; /* Tamaño de texto */
}
.disconnected-message p {
  margin: 10px 0; /* Separación entre los párrafos */
}