/*Dont move any referent to image, me costo un huevo*/
/*Set a image as background, Personal Note (MANI), later make this shit responsive for Gods Sake*/
body {
  height: 100vh; 
  display: flex;
  justify-content: center; 
  align-items: center; 
  background: 
    url("../img/riki_shinagawa2.jpg") no-repeat fixed center 95% / cover;
  background-color: #ffffff;
  margin: 0;
}

/* Login Form */
.form {
    display: flex;
    flex-direction: column;
    height: 500px;
    width: 400px;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: inset -5px -5px rgba(0, 0, 0, 0.39);
    border-radius: 25px;
}

.form h2 {
    color: white;
    font-size: 2rem;
    border-bottom: 4px solid rgba(255, 255, 255, 0.5);
    margin: 50px;
}

/* Boxers */
.box {
    padding: 12px;
    margin: 20px;
    width: 65%;
    border: none;
    outline: none;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: inset -3px -3px rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1em;
}

#submit {
    padding: 10px 20px;
    margin-top: 50px;
    width: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: inset -3px -3px rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 1rem;
}

#submit:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

::placeholder {
  color: white;
}

/*Momento de iluminación*/
a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 20px;
  transition: all 0.3s ease;
}

a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}