*{
    box-sizing: border-box;
    font-family: Arial;
}

body{
    padding: 0;
    margin: 0;
    background: linear-gradient(#000, #fff);
}

#form-section{
    min-height: 100vh;
    background: linear-gradient(#00000038, #00000038), url('./img/bg21.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

#loginform{
    min-width: 300px;
    gap: 30px;
    padding: 20px 20px 70px 20px;
    border: none;
    box-shadow: 0 0 5px #0000006a;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    border-radius: 20px;
    animation: fadeIn 0.8s ease-in-out;

}


@keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
  
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

h2{
    margin: 10px 0;
    font-weight: 999;
    font-size: 40px;
    text-shadow: 1px 1px 1px #000;
    color: #0057b7;
}

input{
    padding: 10px 20px;
    width: 100%;
    border-radius: 10px;
    border: none;
    margin: 5px 0;
}

input:focus{
    border: none;
    border-style: none;
    outline: none;
}

label{
    width: 100px;
    font-weight: bold;
    font-size: 20px;
    height: auto;
    
}

.form-item{
    margin: 15px 0;
    display: block;
}

button{
    padding: 5px 15px;
    border: 1px solid #0057b7;
    box-shadow: 0 0 2px #0057b7;
    color: #0057b7;
    font-weight: bold;
    background: transparent;
    border-radius: 10px;
    font-size: 18px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    transition: .3s ease-in-out;
}

button:hover{
    transform: scale(1.1);
    background-color: #0057b7;
    box-shadow: 0 0 2px #0057b7;
    color: #fff;
    cursor: pointer;
}