 #loginForm label {
  color:rgba(0,0,0,0.4);
 }
 
  #loginForm h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: rgba(0,0,0,0.6);
  }
  

  #loginForm input {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
  } 
  
  #loginForm input[type="text"],
  #loginForm input[type="password"] {
    
    border: 1px solid #ddd;
   
    font-size: 16px;
  }
  
  #loginForm input[type="submit"] {
    background-color: #4caf50;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top:20px;
  }
  
  #loginForm input[type="submit"]:hover {
    background-color: #43a047;
  }
  
  #loginForm input[type="submit"]:active {
    background-color: #388e3c;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
 

  /* ======================= LOGIN SCREEN ======================= */

  html {
    width:100%;
    height:100%;
  }
  
  body {
    width:100%;
    height:100%;
    position:relative;
  }

#loginScreen > form {
  background-color:rgba(255,255,255,0.8);
  border-radius:10px;
  position: absolute;
  width:300px;
  height:320px;
  top: 50%;
  left: 50%;
  margin-top: -160px;
  margin-left:-150px;
  text-align: center;
}

@keyframes breathe {
  0% {
    background-size: 110%;
  }
  50% {
    background-size: 116%;
  }
  100% {
    background-size: 110%;
  }
}

/* Apply the animation to a element */
#loginScreen {
  width:100%;
  height:100%;

  animation: breathe 12s ease-in-out infinite;
  background-position: center;
  background-image:url(../img/Screen3.jpg);
  background-size:cover;
  background-repeat: no-repeat;
}

#loginForm {
  margin:auto;
  width:300px;
  height: 250px;
  border:solid 1px black;
}

#loginForm>div {
  display:flex;
  flex-direction:column;
}

#loginForm .row {
  margin:5px 20px 5px 20px;
}
