﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*Variables para los colores y fuente*/
html {
  width: 100%;
  height: 100%;
  margin: 0px;
}

body {
  width: 100%;
  height: 100%;
  margin: 0px;
  display: flex;
  flex-direction: column;
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  position: relative;
  z-index: 2;
  color: white;
  background-color: rgba(0, 53, 128, 0.3);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

video {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
  z-index: 1;
}

.container-background {
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 53, 128, 0.3);
}
.container-background .container-principal {
  background: #FFFFFF;
  width: 391px;
  height: 462px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.container-background .container-principal .img-logo {
  width: 268px;
  height: 166px;
  margin-bottom: 15px;
}
.container-background .container-principal h1 {
  font-family: "Poppins", sans-serif;
  color: #1C1B1B;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  padding: 0 40px;
}
.container-background .container-principal .botonIniciar {
  background-color: #D64134;
  border-radius: 50px;
  width: 170px;
  height: 41px;
  text-align: center;
  border-style: none;
  letter-spacing: 2px;
  font-size: 15px;
  color: white;
  font-weight: bold;
}
.container-background .container-principal .botonIniciar:hover {
  background-color: rgba(214, 65, 52, 0.9);
  cursor: pointer;
}
