*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: pointer;
}
body{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
background:url(13.jpg);
position: fixed;
background-size: 100%;
}
form{
    width: 25rem;
    height: 30rem;
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    box-shadow: 0 0 9px black; 
    transition: transform 0.5s ease-in-out 0s ;
    margin-left: 40%;
    
}
form:hover{
    transform: scale(1.2);
}
h1{
    font-size: 50px;
    text-align: center;
    color: white;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px black;
}
label{
    margin-left: 10%;
    font-size: 30px;
    color: white;
    letter-spacing: 1px;
    text-shadow: 2px 2px 9px black;
}
input{
    width: 80%;
    height: 8%;
    margin: 5% auto;
    margin-bottom: 8%;
    border: none;
    background: transparent;
    color: white;
    font-size: 150%;
    
    border-bottom: 1px solid #f8f4f4;



}
button{
    border-radius: 20px;
    width: 30%;
    margin: 3% auto;
    font-size: 25px;
    font-weight: bold;
    background: transparent;
    padding: 10px;
    box-shadow: 0 0 8px rgb(5, 0, 0);
    color: white;


}
button.active{
    scale: initial;
}
.d1{
   margin-bottom: 46%;
   margin-left: 5%;
   width: 10%;
}
a{
    text-decoration: none;
    color: black;
}

