* { margin: 0; padding: 0; box-sizing: border-box;}

body {
    max-height: 100vh;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('../img/logo.png');
    background-size: cover;
    background-position: center 30%;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    background-color: rgb(49, 60, 103);
    filter: brightness(0.9);
}

#loginForm{
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(47, 95, 167, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1.5px solid rgba(31, 58, 99, 0.3);
    border-radius: 20px;
    padding: 30px;
}

h1{
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

label{
    color: rgb(255, 255, 255);
    font-size: 18px;
    margin-bottom: 5px;
    text-align: center;
}

input{
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 16px;
}

/*button{
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 16px;
    background-color: #e07a2d;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: background-color 0.3s ease;
}*/
/* From Uiverse.io by Spacious74 */ 
button {
  font-size: 16px;
  padding: 10px 125px;
  border-radius: 10px;
  border: none;
  background-color: #e07a2d;
  color: #fff;
  cursor: pointer;
  box-shadow: 2px 2px 3px #000000b4;
}

.container-button {
  position: relative;
  padding: 3px;
  background: linear-gradient(90deg, #c9651f, #f29c50);
  border-radius: 0.9em;
  transition: all 0.4s ease;
}

.container-button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 0.9em;
  z-index: -10;
  filter: blur(0);
  transition: filter 0.4s ease;
}

.container-button:hover::before {
  background: linear-gradient(90deg, #c9651f, #f29c50);
  filter: blur(1.2em);
}
.container-button:active::before {
  filter: blur(0.2em);
}


#message {
    font-size: 14px;
    overflow: hidden;
    width: 300px;
    color: rgb(42, 8, 8); 
    font-weight: bold;
}