@import url("https://fonts.googleapis.com/css2?family=Jura&display=swap");

body {
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  font-family: "Jura", sans-serif;
}

a {
  text-decoration: none;
  color: #b0b0b0;
}

a:hover {
  text-decoration: underline;
  color: #fff;
}

.header {
  background-color: #213f74;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5%;
  height: 0.2vh;
}

.logo {
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5%;
}

.logo-img {
  display: flex;
  width: 100%;
  height: 60px;
}

.logo img {
  width: 100%;
}

.head-social {
  display: flex;
  width: 10%;
  height: 25px;
  justify-content: space-around;
}

.head-social img {
  width: 100%;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 99%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(33, 63, 116, 0.25);
  border-radius: 20px;
  color: #fff;
  font-size: 40px;
  text-align: center;
}

.poster {
  width: 40vw;
  height: 100%;
  position: relative;
  border-radius: 20px;
}

.poster img {
  width: 100%;
}

.login-section {
  width: 25vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60vh;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin: 3%;
  border-radius: 20px;
  background-color: #213f74;
  color: #fff;
}

.login-section h2 {
  font-size: 35px;
}

.login-section form {
  display: flex;
  flex-direction: column;
  padding: 2%;
  justify-content: center;
  align-items: center;
  width: 70%;
}

#email,
#password {
  width: 100%;
  outline: none;
  padding: 5%;
  border-radius: 15px;
  margin-bottom: 4%;
  border: none;
  background-color: rgba(212, 212, 212, 1);
  text-align: center;
}

#email::placeholder,
#password::placeholder {
  text-align: center;
  font-size: 20px;
  color: rgba(33, 114, 188, 1);
}

#submit {
  background-color: #005fb7;
  width: 60%;
  outline: none;
  border: none;
  padding: 4%;
  border-radius: 15px;
  color: #fff;
  font-size: 20px;
}

#submit:hover {
  background-color: #004382;
  cursor: pointer;
}

.or {
  width: 80%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  height: 5%;
  margin-bottom: 2%;
  align-items: center;
}

.or span::before,
.or span::after {
  content: "";
  width: 12px;
  height: 2px;
  border-top: 2px solid #fff;
  display: inline-block;
  margin-left: 2px;
  margin-right: 2px;
}

.g-login {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #005fb7;
  padding: 3%;
  font-size: 20px;
  border-radius: 15px;
}

.g-login:hover {
  background-color: #004382;
  cursor: pointer;
}

.login-bottom {
  margin-top: 10%;
  display: flex;
  justify-content: space-between;
  width: 80%;
}

.login-bottom a {
  font-weight: 600;
}

.footer {
  background-color: #213f74;
  display: flex;
  flex-direction: column;
  padding: 2%;
  color: #fff;
  font-size: 15px;
}

.row {
  display: flex;
}

.left-footer {
  display: flex;
  flex-direction: column;
  width: 50vw;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  width: 20%;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-logo img:nth-child(1) {
  width: 40%;
  height: 50px;
}

.footer-logo img:nth-child(2) {
  width: 100%;
  height: 40px;
}

.right-footer {
  display: flex;
  width: 40vw;
  justify-content: space-around;
}

.right-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

