﻿body.login-body:before {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-image: url("../images/login-background-6.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(10px);
}

.login-banner {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  padding: 20px;
  background: white;
  background: rgba(255, 255, 255, 0);
  border-radius: 10px;
  text-align: center;
}
.login-banner img {
  max-width: 300px;
}

.login-form {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 550px;
  padding: 80px 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
}
.login-form .avatar {
  position: absolute;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  top: -40px;
  left: calc(50% - 40px);
}
.login-form h2 {
  margin: 0;
  padding: 0 0 20px;
  color: white;
  text-align: center;
  text-transform: uppercase;
}
.login-form p {
  margin: 0;
  padding: 0;
  font-weight: bold;
  color: white;
}
.login-form p label.check {
  cursor: pointer;
}
.login-form p a {
  color: white;
}
.login-form li {
  color: white;
}
.login-form li a {
  color: white;
}
.login-form input {
  width: 100%;
  margin-bottom: 20px;
}
.login-form input[type=text], .login-form input[type=password] {
  border: none !important;
  border-bottom: 1px solid white !important;
  background: transparent !important;
  outline: none !important;
  color: white;
  font-size: 1rem;
}
.login-form input[type=submit] {
  height: 30px;
  color: white;
  background: red;
  cursor: pointer;
  border-radius: 25px;
  border: none;
  outline: none;
  margin-top: 5%;
}
.login-form input[type=checkbox] {
  width: auto;
}
.login-form #select-language {
  position: absolute;
  bottom: 0;
  right: 1rem;
}

.profile img {
  width: 100px;
  height: 100px;
}

.card {
  border-radius: 15px;
  margin-left: 30px;
  margin-right: 30px;
  opacity: 0.4;
}

.card-body {
  position: relative;
  bottom: 35px;
}

.validation-summary-errors {
  background: white;
  opacity: 0.8;
  color: red;
  border-radius: 0.3em;
  padding: 0.5em;
}
.validation-summary-errors ul {
  list-style: none;
  margin-left: -40px;
  margin-bottom: 0;
}
.validation-summary-errors ul li {
  color: red;
}

@media screen and (max-width: 415px) {
  .login-banner {
    left: 50%;
    width: 350px;
  }
  .login-form {
    top: 60%;
    left: 50%;
    width: 350px;
  }
}
@media screen and (max-width: 375px) {
  .login-form {
    left: 50%;
    width: 350px;
    height: 450px;
    padding: 60px 20px;
  }
}
@media screen and (max-width: 320px) {
  .login-banner {
    left: 50%;
    width: 300px;
  }
  .login-form {
    top: 55%;
    left: 50%;
    width: 300px;
    height: 350px;
  }
}
