@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;700;900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Barlow', sans-serif;
  letter-spacing: .5px;
  position: relative;
  background: url('../img/personalizados/background.svg') no-repeat;
  /* background-color: #e8e8e8; */
}
body::before{
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
 body {
  background: url('../img/personalizados/background.svg') no-repeat;
  /* background-color: #e8e8e8; */
  background-size: cover;
  background-position: center;
 }
}
.logo {
  position: absolute;
  padding: 1rem;
  display: none;
}
.logo img {
  width: 100px;
  display: block;
}
@media only screen and (min-width: 992px) {
  .logo {
    padding: 2rem;
    display: block;
  }
  .logo img {
    width: 110px;
    display: block;
  }
}
.login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.contenedor__formulario {
  width: 350px;
  margin: 0 auto;
  padding: 1rem;
  z-index: 10;
  color: white;
}
.formulario {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.img-avatar{
  background-color: #4158D0;
  background-image: linear-gradient(to top, #f6bf75 0%, #d77185 25%, #8766ac 50%, #4150b1 100%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  border: 8px solid #e8e8e8;
}
.img-avatar::before{
  content: '';
  background-color: #fff;
  /* background-image: url('../img/personalizados/avatar.png'); */
  background-image: url('../img/personalizados/logoPITS.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  width: 170px;
  height: 170px;
  display: block;
  position:absolute;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: ;
}
.inicarSesion {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  position: relative;
}
.inicarSesion p {
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  padding: 0 .5rem;
}
.inicarSesion p::before {
  content: '';
  width: 60px;
  height: 2px;
  background-color: #ffffffb6;
  display: block;
  position: absolute;
  top: 55%;
  left: -60px;
}
.inicarSesion p::after {
  content: '';
  width: 60px;
  height: 2px;
  background-color: #ffffffb6;
  display: block;
  position: absolute;
  top: 55%;
  left: 100%;
}
.input__name {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  font-size: 18px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #f6bf75 0%, #d77185 25%, #8766ac 50%, #4150b1 100%) border-box;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-radius: .6em;
  color: #2C3333;
  transition: all .1s ease;
}
.input__name:focus {
  outline: none;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #f6bf75 0%, #d77185 25%, #8766ac 50%, #4150b1 100%) border-box;
  border-width: 3px;
  border-style: solid;
  border-color: transparent;
  border-radius: .6em;
  padding: 11px;
}
.input__pass {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  font-size: 18px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to left, #f6bf75 0%, #d77185 25%, #8766ac 50%, #4150b1 100%) border-box;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-radius: .6em;
  transition: all .1s ease;
}
.input__pass:focus {
  outline: none;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to left, #f6bf75 0%, #d77185 25%, #8766ac 50%, #4150b1 100%) border-box;
  border-width: 3px;
  border-style: solid;
  border-color: transparent;
  border-radius: .6em;
  padding: 11px;
}
.input__submit {
  background-color: #865fc2;
  width: 100%;
  border: none;
  padding: 10px;
  font-weight: 700;
  font-family: inherit;
  font-size: 20px;
  color: #fff;
  border-radius: .4em;
}
.input__submit:hover {
  cursor: pointer;
  background-color: #8157c0;
}
.from__registro {
  color: #ffffff;
  margin-top: 2rem;
  border-top:2px solid #ffffff;
  padding-top: 5px;
}
.from__registro a {
  color: #ffffff;
}
.footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: -1000;
}
.footer img {
  display: block;
  width: 300px;
  margin: 0 auto;
  padding-bottom: 20px;
  filter: opacity(.7);
}
@media only screen and (min-width: 468px) {
  .footer img {
    width: auto;
  }
}