*,*::before, *::after{
    box-sizing: border-box;
}
body{
    margin:0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url("../images/money.jpg"); 
    background-repeat:no-repeat;
    background-size: cover;
    background-position: top 20%;
    padding:20px;
}
#loginForm{
    height: 95vh;
    width: 90vw;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#registerFormModal{
    position: absolute;
    z-index:2;
    height: 95vh;
    width: 90vw;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.form_for_register{
    background-color: black;
}
form{
    background-color:rgba(0, 0, 0, 0.5);
    height: 50%;
    width:50%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap:10px;
    box-shadow: 0 0 10px 10px rgb(206, 203, 203);
    transition: box-shadow 0.8s ease;
}
form:hover{
    box-shadow: 0 0 10px 10px aqua;
}
input{
   width: 25vw;
   height: 5vh;
   background: none;
   border:none;
   border-bottom: 1px solid white;
   font-size: 1.2rem;
   transition:box-shadow 0.8s ease;
   color:white;
   font-size:1.5rem;
}
input:hover{
    box-shadow: 0 0 10px 10px aqua;
}
 button{
    width: 150px;
    height: 50px;
    border-radius: 10px;
    border:none;
    background: linear-gradient(to right, aqua, white, white, aqua);
    font-size: 1.5rem;
    box-shadow: 0 0 7px 7px rgb(189, 182, 182);
    transition: box-shadow 0.8s ease, background 0.8s ease;
}
button:hover{
    box-shadow: 0 0 10px 10px aqua;
    background:linear-gradient(to right, rgb(130, 253, 253), white, white, rgb(130, 253, 253));
}
h1{
    color: white;
    font-weight: bold;
    text-shadow: 0 0 10px white;
}
.message{
    color:white;
    font-size: 1.4rem;
}
a{
    text-decoration: none;
    color:aqua;
}
a:hover{
    text-shadow: 0 0 10px white;
}