:root {
  --text-color: rgb(0,0,0);
  --text-color-mid: rgb(11,11,11);
  --text-color-menu: rgb(45,45,43);
  --background-color: rgb(255,255,255);
  --backgroundA: rgb(60,60,59);
  --backgroundB: rgb(45, 45, 43);
  --backgroundC: rgb(232, 179, 32);
  --backgroundD: rgb(239,239,239);
  --new: rgb(232, 179, 32);
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  font-weight: 400;
}

/* Set core body defaults */
html {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-size: 15px;
}

body {
  position: relative;
  min-height: 100vh;
  background-color: var(--backgroundA);
  color: var(--background-color);
  line-height: 1.5;
  font-family: sans-serif;
  font-size: 1rem;
  font-family: "Open Sans", serif;
}

h1 {
  text-align: center;
  margin: 20px auto;
  font-size: 2rem;
}

h2 {
  text-align: center;
  margin: 20px auto;
  font-size: 1.6rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, html {
  width: 100%;
  height: 100%;
  background-color: var(--backgroundB);
}

section {
  width: 100%;
  height: 100%;
}

footer {
  display: none;
}

h2 {
  margin: 0 auto 24px;
  font-size: 2rem;
}

input[type=text], input[type=password], select, textarea {
  -webkit-appearance: none;
  appearance: none;
  color: var(--text-color);
  background: var(--background-color);
  margin: 5px;
  padding: 8px;
  border: 1px solid #DDD;
  width: 100%;
}

input[type=checkbox] {
  padding: 6px;
  margin-right: 8px;
  cursor: pointer;
  width: auto;
}

input[type=submit], button {
  padding: 10px 65px;
  margin: 15px auto;
  width: 100%;
  display: block;
  border: none;
  border-radius: 65px;
  color: var(--background-color);
  background-color: var(--backgroundC);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
input[type=submit]:hover, button:hover {
  background-color: var(--text-color);
}

table {
  width: 90%;
  margin: 15px auto;
}
table tr th {
  font-weight: 400;
  text-align: left;
}

.login-wrapper {
  width: 100%;
  height: 100%;
}

.login-box {
  margin: 0 auto;
  width: 700px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .login-box {
    width: 100%;
  }
}

.login-logo {
  width: 430px;
  margin: 0 auto;
  text-align: center;
  animation: fade-in 900ms ease-in-out forwards;
}
.login-logo img {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width: 700px) {
  .login-logo {
    width: 96%;
  }
  .login-logo img {
    max-width: 250px;
  }
}

.login-welcome h2 {
  margin: 0 auto 10px;
}
@media screen and (max-width: 700px) {
  .login-welcome {
    max-width: 90%;
    margin: 30px auto;
  }
  .login-welcome h2 {
    font-size: 1.4rem;
  }
}

.login-form {
  margin: 20px auto 80px;
  width: 400px;
  opacity: 0;
  border: 6px solid var(--backgroundC);
  border-radius: 4px;
  background-color: var(--background-color);
  color: var(--text-color);
  font-weight: 400;
  animation: fade-in 700ms ease-in-out 300ms forwards;
}
.login-form .header {
  padding: 10px;
  background-color: var(--backgroundC);
  color: var(--background-color);
}
@media screen and (max-width: 700px) {
  .login-form {
    width: 90%;
    max-width: 90%;
  }
}

.show-pass {
  display: inline-block;
}
.show-pass img {
  width: 18px;
  transform: translateY(2px);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.show-pass img:hover {
  opacity: 1;
}
.show-pass:hover img {
  opacity: 1;
}

input[type=password][id=contrasena],
input[type=text][id=contrasena] {
  padding-right: 45px !important;
}

div #toggle_password.show-pass,
#toggle_password {
  position: absolute !important;
  right: 3px !important;
  top: 6px !important;
  transform: none !important;
  display: flex !important;
  width: auto !important;
  height: 32px !important;
  margin: 0 !important;
  padding: 5px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  align-items: center !important;
  justify-content: center !important;
}

#remember_me {
  margin-right: 8px;
  cursor: pointer;
  width: auto;
}

#modal_confirm {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}
#modal_confirm > div {
  width: 400px;
  max-width: 96%;
  padding: 25px;
  flex-wrap: wrap;
  background-color: var(--background-color);
  border-radius: 12px;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.5);
  color: var(--backgroundC);
  text-decoration: none;
  text-align: center;
}

.errForm {
  border: 1px solid rgb(255, 160, 160);
}

.err {
  width: 96%;
  padding: 3px 5px;
  margin: 10px auto;
  display: block;
  background-color: rgb(255, 160, 160);
  border-radius: 5px;
  border: 2px solid rgb(255, 160, 160);
  color: #FFF;
  text-decoration: none;
}

.warn {
  background-color: rgb(255, 160, 160);
  border-radius: 5px;
  border: 2px solid rgb(255, 160, 160);
  color: #FFF;
  text-decoration: none;
  padding: 3px 5px;
  margin: 5px 0;
  display: inline-block;
}

#topErr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 10px;
  text-align: center;
  background: rgba(255, 0, 0, 0.1);
  color: rgba(255, 0, 0, 0.7);
}

#topValid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  text-align: center;
  background: rgba(0, 255, 0, 0.1);
  color: rgba(0, 255, 0, 0.7);
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*# sourceMappingURL=login.css.map */
