/* src/style/main.scss */
.login {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.login__welcome {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-width: 350px;
  min-height: 480px;
  padding: 1rem;
  border-radius: 1rem 0 0 1rem;
  background-color: #e5e5e5;
}
.login__welcome h2 {
  font-weight: 100;
  font-size: 1.2rem;
  margin: 1rem 0 0 1rem;
  color: black;
}
.login__welcome-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.login__welcome-img h3 {
  font-weight: bold;
  font-size: 1.5rem;
  color: black;
}
.login__welcome p {
  font-weight: 100;
  font-size: 0.8rem;
  margin: 1rem 0 0 1rem;
  color: black;
}
.login__welcome p a {
  margin-left: 0.5rem;
  color: #14213d;
}
.login__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 1rem;
  min-width: 350px;
  min-height: 480px;
  border-radius: 0 1rem 1rem 0;
  color: white;
  background-color: #14213d;
}
.login__form h2 {
  font-weight: 100;
  font-size: 1.2rem;
  margin: 1rem 0 0 1rem;
}
.login__form .formLogin {
  margin: 1rem 0 0 1rem;
}
.login__form .formLogin .form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0.5rem 0 1rem 0;
}
.login__form .formLogin .form-group label {
  font-size: 0.6rem;
  color: #e5e5e5;
}
.login__form .formLogin .form-group input {
  outline: none;
  transition: all 0.5s linear;
  width: 100%;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #aaa;
  color: white;
  background-color: transparent;
}
.login__form .formLogin .form-group input:focus {
  border-color: white;
}
.login__form .formLogin .form-group input::placeholder {
  color: #e5e5e5;
}
.login__form .formLogin .form-group .btn {
  cursor: pointer;
  transition: all 0.5s linear;
  display: inline-block;
  text-align: center;
  width: 100%;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  color: #14213d;
  background-color: #e5e5e5;
}
.login__form .formLogin .form-group .btn:hover {
  color: #e5e5e5;
  background-color: #14213d;
}
.login__form .formLogin a {
  display: block;
  transition: all 0.5s linear;
  text-align: right;
  font-size: 0.6rem;
  color: #e5e5e5;
}
.login__form .formLogin a:hover {
  color: white;
}
.login__form .formLogin input {
  cursor: pointer;
}
.login__form .formLogin label {
  cursor: pointer;
  font-weight: 100;
  font-size: 0.8rem;
}
.login__form p {
  font-size: 0.8rem;
  margin: 1rem 0 0 1rem;
}
.login__form .form-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0.8rem auto;
}
.login__form .form-group .btn {
  display: flex;
  align-items: center;
  transition: all 0.5s linear;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #aaa;
  color: white;
  background-color: transparent;
}
.login__form .form-group .btn:hover {
  border-color: white;
  color: #14213d;
  background-color: white;
}
.register {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.register__welcome {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  min-width: 350px;
  min-height: 480px;
  padding: 1rem;
  border-radius: 0 1rem 1rem 0;
  background-color: #14213d;
}
.register__welcome h2 {
  font-weight: 100;
  font-size: 1.2rem;
  margin: 1rem 1rem 0 0;
  color: white;
}
.register__welcome-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
}
.register__welcome-img h3 {
  font-weight: bold;
  font-size: 1.5rem;
  color: white;
}
.register__welcome p {
  font-size: 0.8rem;
  margin: 1rem 1rem 0 0;
  color: white;
}
.register__welcome p a {
  margin-left: 0.5rem;
  color: #e5e5e5;
}
.register__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 1rem;
  min-width: 350px;
  min-height: 480px;
  border-radius: 1rem 0 0 1rem;
  color: black;
  background-color: #e5e5e5;
}
.register__form h2 {
  font-weight: 100;
  font-size: 1.2rem;
  margin: 1rem 0 0 1rem;
}
.register__form .formRegister {
  margin: 1rem 0 0 1rem;
}
.register__form .formRegister .form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0.5rem 0 1rem 0;
}
.register__form .formRegister .form-group label {
  font-size: 0.6rem;
  color: black;
}
.register__form .formRegister .form-group input {
  outline: none;
  transition: all 0.5s linear;
  width: 100%;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #aaa;
  color: black;
  background-color: transparent;
}
.register__form .formRegister .form-group input:focus {
  border-color: black;
}
.register__form .formRegister .form-group input::placeholder {
  color: black;
}
.register__form .formRegister .form-group .btn {
  cursor: pointer;
  border: none;
  transition: all 0.5s linear;
  display: inline-block;
  text-align: center;
  width: 100%;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  color: white;
  background-color: #14213d;
}
.register__form .formRegister .form-group .btn:hover {
  color: #14213d;
  background-color: white;
}
.header {
  position: relative;
  padding: 1rem 2rem;
  background-color: #14213d;
}
.header__navbar a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.header__navbar a img {
  width: 50px;
}
.header__navbar a h2 {
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #fff;
}
.header #btnBack {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  border: none;
  transition: all 0.5s linear;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  color: #14213d;
  background-color: white;
}
.header #btnBack:hover {
  color: white;
  background-color: #14213d;
}
.main__inicio {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  height: 40dvh;
}
.main__inicio div button {
  border: none;
  transition: all 0.5s linear;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  color: #14213d;
  background-color: white;
}
.main__inicio div button:hover {
  color: white;
  background-color: #14213d;
}
.main__inicio div button i {
  font-size: 1rem;
  margin-left: 0.5rem;
}
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  gap: 1rem;
  background-color: #14213d;
}
.footer .footer__mailto {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  margin: 0.5rem 1rem;
  gap: 1rem;
  border-radius: 1rem;
  color: #14213d;
  background-color: white;
}
.footer .footer__mailto h2 {
  font-size: 1rem;
  width: 30%;
}
.footer .footer__mailto p {
  width: 40%;
  font-size: 1rem;
  margin: 10px;
}
.footer .footer__mailto a {
  text-decoration: none;
  transition: all 0.5s linear;
  width: 30%;
  font-size: 1rem;
  padding: 0.5rem;
  border-radius: 1rem;
  border: 1px solid #14213d;
  color: #14213d;
}
.footer .footer__mailto a:hover {
  color: white;
  background-color: #14213d;
}
.footer .footer__info p {
  font-size: 1rem;
  color: white;
}
.footer .footer__info p:nth-child(1) {
  text-decoration: underline;
  font-size: 1.2rem;
}
.footer .footer__info ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 1rem;
  margin: 0.5rem auto;
}
.footer .footer__info ul li a {
  transition: all 0.5s linear;
  font-size: 1rem;
  color: white;
}
.footer .footer__info ul li a:hover {
  color: #e5e5e5;
}
.main__agregar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.main__agregar h2 {
  font-size: 1.2rem;
  color: white;
}
.main__agregar form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main__agregar form div {
  width: 100%;
}
.main__agregar form div label {
  font-size: 1rem;
  color: white;
}
.main__agregar form div input {
  outline: none;
  transition: all 0.5s linear;
  width: 100%;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #aaa;
  color: #14213d;
  background-color: transparent;
}
.main__agregar form div input:focus {
  border-color: #fca311;
}
.main__agregar form button {
  border: none;
  transition: all 0.5s linear;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  color: #14213d;
  background-color: white;
}
.main__agregar form button:hover {
  color: white;
  background-color: #14213d;
}
.main__ver {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.main__ver h2 {
  font-size: 1.2rem;
  color: white;
}
.main__ver form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main__ver form input {
  outline: none;
  transition: all 0.5s linear;
  width: 100%;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 1rem 0 0 1rem;
  border: 1px solid #aaa;
  color: #14213d;
  background-color: transparent;
}
.main__ver form input:focus {
  border-color: #fca311;
}
.main__ver form button {
  transition: all 0.5s linear;
  padding: 0.5rem 1rem;
  border: 1px solid #aaa;
  border-radius: 0 1rem 1rem 0;
  color: #14213d;
  background-color: white;
}
.main__ver form button:hover {
  color: white;
  background-color: #14213d;
}
.main__ver .table {
  width: 80%;
  margin: 0 auto;
}
.main__ver .table thead {
  vertical-align: bottom;
}
.main__ver .table thead tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
.main__ver .table thead tr th {
  font-size: 1.2rem;
  background-color: #14213d;
  color: white;
}
.main__ver .table tbody {
  text-align: center;
  vertical-align: inherit;
}
.main__ver .table tbody tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
.main__ver .table tbody tr td {
  font-size: 1.2rem;
  color: white;
  border-bottom: 1px solid #14213d;
}
.main__ver .table button {
  border: none;
  transition: all 0.5s linear;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  color: #14213d;
  background-color: white;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: cursive, sans-serif;
  background-color: #000;
}
