/*  --------------------------------------------------------------  */

body{
  background-image: url('../img/background.webp') !important;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: sans-serif !important;
  overflow-x: hidden;
}

.navbar{
  width: 100%;
  height: 15vh;
  /* background-color: red; */
  display: flex;
  justify-content: left !important;
  align-items: center;
  object-fit: contain;
  margin-top: 2vh;
}

.navbar .logo{
  height: 100%;
  margin-left: 5%;
}

.navbar .letters{
  height: 80%;
  margin-left: 1%;
  object-fit: contain;
}


@media (max-width: 1100px) {
  .navbar .letters{
    position: absolute;
    /* height: 8vh; */
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 800px) {
  
  .navbar{
    justify-content: center !important;
  }

  .navbar .logo{
    margin-left: 0;
  }
  
  .navbar .letters{
    position: relative;
    left: 0;
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  
  .navbar .logo{
    display: none;
  }
  
  .navbar .letters{
    position: relative;
    left: 0;
    transform: translateX(0);
  }
}

@media (max-width: 450px) {

  .navbar .letters{
    width: 95vw;
  }
}

/* -------------------------------------------------------------- */


.login-page {
  width: 100%;
  height: 73vh;
  padding: 10vh 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  z-index: 1;
  background: #FCA5A5;
  /* background-color: rgba(0, 0, 0, 0.8); */
  background-color: white;
  width: 40vw;
  /* min-height: 60vh; */
  height: 65vh;
  padding: 5%;
  text-align: center;
  border-radius: 30px;
  align-content: center ;
}

@media (max-width: 1400px) {
  form{
    width: 60vw;
  }
}

@media (max-width: 700px) {
  form{
    width: 80vw !important;
  }
}

@media (max-width: 500px) {
  form{
    width: 90vw !important;
    padding: 5% 7%;
  }
}

@media (min-height: 700px) {
  form{
    height: 450px !important;
  }
}

form input {
    font-family: "Roboto", sans-serif;
    outline: 0;
    background: #F9FAFB;
    
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    border: solid 1px grey !important;
}

form button {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    outline: 0;
    background: #EF4444;
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 15px;
    color: #F9FAFB;
    font-size: 14px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
    margin-top: 3%;
    font-size: larger;
    font-weight: bold;
    transition: 0.1s;
}
form button:hover,.form button:active,.form button:focus {
    background: red;
}

.message {
  color: red;
  margin-top: 10px;
  font-size: larger;
  font-weight: bold;
}

form h1 {
    margin-bottom: 1px;
    color: rgb(58, 58, 58);
    font-size: 50px;
    margin: 0;
    margin-bottom: 10%;
    font-weight: bold;
}

.error {
  margin-top: 0.5rem;
  font-size: 15px;
}

/* -------------------------------------------------------------- */

.footer{
  height: 10vh;
  display: flex;
  justify-content: right;
  align-items: end;
  padding: 0 1%;
  width: 100%;
  color: #adacac;
}

.footer .creator{
  margin-right: 5%;
}

.footer .creator a{
  font-weight: bold;
  color: white;
}
