@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
* {
  font-family: "Lato", sans-serif !important;
}

:root {
  --primary-color: #21b394;
  --primary: #3074f4;
}

body {
  text-align: center;
  margin: 0px;
}

.mt-2 {
  margin-top: 10px;
}
.mt-4 {
  margin-top: 20px;
}
.c-primary {
  color: #ff5000;
}

.authLayout {
  min-height: 100vh;
  width: 100vw;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  background-image:url("../images/background.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

form {
  opacity: 1 !important;
  width: min(600px, 95%);
  min-height: 500px;
  height: fit-content;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: var(--primary);
}

.messages {
  color: red;
  list-style: none;
  margin-top: 0px;
}

.form-label {
  width: 90%;
  font-size: 17px;
  color: aliceblue;
  margin: 0px auto;
  text-align: left;
  font-weight: 500 !important;
}

.form-field > input[type="text"],
.form-field > input[type="password"],
.form-field > input[type="email"] {
  width: 90%;
  height: 30px;
  font-size: 16px;
  margin: 0 auto;
  font-weight: 400;
  background: transparent !important;
  border-bottom: 1.5px solid white !important;
  border-width: 0px !important;
  border-bottom-width: 1.5px !important;
  color: white !important;
  display: block;
}
.form-field > input[type="text"]:focus,
.form-field > input[type="password"]:focus,
.form-field > input[type="email"]:focus {
  border-bottom: 1.5px solid white !important;
  border-width: 0px !important;
  border-bottom-width: 1.5px !important;
  outline-width: 0px;
}
input::placeholder {
  color: white !important;
  opacity: 0.6 !important;
}
.form-input {
  float: right;

  font-size: 25px;
  background-color: #ccc;
}
.form-image {
  height: 100px;
}
.login-btn,
input[type="submit"].login-btn,
a.login-btn {
  background-color: #ff5000;
  color: aliceblue;
  width: 90%;
  display: block;
  height: 40px;
  margin: 0 auto;
  border-radius: 2px;
  font-size: 16px;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.button.login-btn > a {
  text-decoration: none !important;
  color: aliceblue !important;
}

div#checkboxes {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: #ffffff30;
  width: 60%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 4px;
}

ul.messages {
  width: 60%;
  margin: 10px auto;
  background: #21b3947a;
  list-style: none;
  padding: 6px;
  color: aliceblue;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  border: 1px solid var(--primary-color);
}
