@import "styles.css";

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg);
  position: relative;
}

.container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    30deg,
    var(--color-bg-light) 0%,
    #009DCC 100%
  );
}

.container form {
  width: 380px;
  height: 420px;
  padding: 3rem 2rem;
  background-color: var(--color-white);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.25),
    -5px -5px 10px rgba(153, 153, 153, 0.4);
  border-radius: 35px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.input-fields {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.logo {
  width: 80px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--color-bg-light);
  border-radius: 50px;
  box-shadow: 5px 5px 10px rgba(116, 116, 116, 0.35),
    -5px -5px 10px rgba(168, 168, 168, 0.35);
}

form h1 {
  font-family: sans-serif;
  color: #009DCC;
  margin: 6px;
  padding-top: 1px;
  font-size: 24px;
  /* text-transform: uppercase; */
}

.input-fields input {
  width: 95%;
  height: 38px;
  margin: 10px 0;
  border: 1px solid rgba(137, 137, 137, 0.22);
  padding: 8px 20px;
  outline: none;
  font-size: 17px;
  border-radius: 20px;
  background-color: var(--color-bg);
}

.input-fields,
.field-name,
.field-password {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.input-fields input::placeholder {
  font-size: 15px;
}

label {
  color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: -10px;
  left: 5px;
  font-size: 15px;
}

input[type="submit"] {
  background-color: #009DCC;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: var(--color-bg-light);
  transition: var(--transition);
}

.links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.links a {
  font-size: 15px;
  color: var(--color-bg-light);
  text-decoration: none;
}

/*#esqueci-txt {
    position: relative;
    margin-top: -1vh;
}*/

.modal-body {
    color:red;
}

.logos-under {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

/* --- MEDIA QUERY/RESPONSIVE --- */

@media screen and (max-width: 1800px) {
    .logos-under {
        top: 90%;
    }
}
