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

.login-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("./../images/loginbackground.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.login-container {
  max-width: 1900px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 40px 120px 0 120px;
}
.footer {
  padding: 40px 120px;
}

.navbar {
  overflow: hidden;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow */
  border-radius: 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 12px 64px;
  font-weight: bold;
}

/* Links inside the navbar */
.navbar a {
  color: black;
  text-decoration: none;
}

.navbar a:hover {
  color: red;
}

.navbar .navbar-buttons {
  display: flex;
  gap: 16px;
}

.navbar .language-options .flag-icon {
  height: 12px;
}

.navbar .navbar-buttons #languageSwitcher {
  border: none;
  outline: none;
}

.card-body {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  flex-direction: row;
  padding: 0;
}

@media screen and (max-width: 1200px) {
  .card-body {
    margin-top: 64px;
    flex-direction: column-reverse;
    justify-content: flex-end;
    gap: 64px;
    padding: 0px;
  }
  .card-body .card-text {
    display: none;
  }
  .navbar {
    padding: 20px;
  }
  .navbar .navbar-contact {
    display: none;
  }
  .footer {
    display: none;
  }
}

@media screen and (min-width: 1900px) {
  .card-form {
    font-size: 22px !important;
    max-width: 400px !important;
  }
  .card-text {
    font-size: 24px !important;
    max-width: 360px !important;
  }
}

.card-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 15px;
  font-weight: bold;
  max-width: 350px;
  width: 100%;
  color: #212529;
}

.card-form input {
  width: 100%;
  height: 45px;
  outline: none;
  padding-left: 20px;
  border: 0.5px solid grey;
  border-radius: 9px;
  box-sizing: border-box;
}

.card-form .login-btn,
.card-form .register-btn {
  cursor: pointer;
  margin-top: 16px;
  width: 100%;
  height: 45px;
  border: 0.5px solid grey;
  border-radius: 9px;
  box-sizing: border-box;
  outline: none;
  background-image: linear-gradient(to bottom, #df0f33, #8f0921);
  color: azure;
  outline: none;
  box-shadow: 2px 14px 18px rgba(0, 0, 0, 0.1);
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.card-text {
  color: #faf9f6;
  font-size: 20px;
  max-width: 320px;
}

.navbar #loginLogo,
.card-text #loginLogo {
  height: 45px;
  width: 210px;
  margin-bottom: 8px;
  display: block;
}

@media screen and (max-width: 800px) {
  .navbar #loginLogo {
    margin-bottom: 0px;
  }
}

.footer #footerLogo {
  height: 7%;
  width: 5%;
  right: 0px;
  position: absolute;
  padding: 10px;
}

.social_icon span {
  font-size: 60px;
  margin-left: 10px;
  color: #ffc312;
}

.social_icon span:hover {
  color: white;
  cursor: pointer;
}

.social_icon {
  position: absolute;
  right: 20px;
  top: -45px;
}

.input-group-prepend span {
  width: 50px;
  background-color: #f51038;
  color: black;
  border: 0 !important;
}

input:focus {
  outline: 0 0 0 0 !important;
  box-shadow: 0 0 0 0 !important;
}

.remember {
  color: white;
}

.remember input {
  width: 20px;
  height: 20px;
  margin-left: 15px;
  margin-right: 5px;
}

.login_btn {
  color: black;
  background-color: #f51038;
  width: 100px;
}

.login_btn:hover {
  color: black;
  background-color: white;
}

.links {
  color: white;
}

.links a {
  margin-left: 4px;
}
