/* Importacion de la Fuente */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
/* Paleta de Colores */
:root{
    --withe-etb: #FFFFFF;
    --black-etb: #1D1D1D;
    --bblue-etb: #044A8B;
    --wblue-etb: #0092BC;
    --w2blue-etb: #00b4ff;
    --whblue-etb: #0090cc;
    --orange-etb: #FF6523;
    --grey-etb: #C8C8C8;
}
/* Paleta de Colores */

/* Reiniciar el CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}

body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #0b1a2d, #1a3b66);
    color: var(--withe-etb);
}

img {
    width: 150px;
}
/* Reiniciar el CSS */

/* Estilos de la portada del index */
.container_Portain {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    /*background: rgba(255, 255, 255, 0.05);*/
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.container_Portain span {
    font-size: 2rem;
    font-weight: 400;
    margin-top: 1rem;
    line-height: 1.2;
}

#belived_Text {
    color: var(--w2blue-etb);
    font-weight: 700;
  }
/* Estilos de la portada del index */

/* Estilos del Login */
.container_Login,
.container_Create {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 1rem;
}

.tittle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--w2blue-etb);
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

form p {
    font-size: 0.95rem;
    color: var(--grey-etb);
    margin-bottom: 0.2rem;
}

input {
    width: 100%;
    padding: 0.6rem;
    border-radius: 6px;
    border: none;
    outline: none;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

input::placeholder {
    color: var(--grey-etb);
}

.btn_Start {
  background: var(--w2blue-etb);;
  color: var(--withe-etb);
  font-weight: 900;
  border: none;
  border-radius: 12px;
  padding: 0.7rem;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%;
}

.btn_Start:hover {
  background: var(--whblue-etb);
}

.container_Control,
.container_Control2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.5rem;
  text-align: center;
}

.btn_Create {
  color: var(--w2blue-etb);
  cursor: pointer;
  font-weight: 500;
  margin-top: 0.2rem;
}

#version{
  margin-top: 12px;
}

.btn_Create:hover {
  text-decoration: underline;
}
/* Estilos del Login */

/* Responsive de la Pagina */
@media (max-width: 992px) {
body {
  flex-direction: column;
  padding: 1rem;
}

.container_Portain {
  border-right: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.container_Portain img {
  width: 100px;
}

.container_Portain span {
  font-size: 1.6rem;
}

.container_Login,
.container_Create {
  width: 100%;
  max-width: 380px;
  margin-top: 1.5rem;
}
}

@media (max-width: 576px) {
.container_Portain span {
  font-size: 1.3rem;
}

.tittle {
  font-size: 1.2rem;
}

input {
  font-size: 0.9rem;
}

.btn_Start {
  font-size: 0.9rem;
}
}
/* Responsive de la Pagina */