.back{
    height: 100vh;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.navbar {
    /* border: solid white; */
    display: flex;
    justify-content: end;
    font-size: 2rem;
    font-weight: 900;
    position: sticky;
    top: 3px;

    
}

.navbar nav a,
.navbar div a{
    text-decoration: none;
    color:white;
    padding: 4px 15px 4px 15px;


}

.navbar nav a:hover,
.navbar div a:hover{
    color: rgba(0, 0, 0, 0.781);
    transition: all 0.4s;

}

.navbar nav,
.navbar div{
    margin-right: 5%;
    border: solid white 0.1px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.226);


}

.navbar nav:hover,
.navbar div:hover{
     border: rgba(0, 0, 0, 0.877) ;
     
}


body{
    background-image: url('./login\ page.jpg');
    background-repeat: no-repeat;
    background-position: center;
       background-size: cover;
    
}



form{
    border: solid 0.1px;
    padding: 50px 30px 50px 30px;
   display: flex;
   flex-direction: column;
   width: 300px ;
   margin: 50px auto;   
   margin-top: 30%;
   font-size: 25px;
   color: white;
   gap: 10px;
   background-color: rgba(255, 255, 255, 0.226);
}

form:hover{
    background-color: rgba(0, 0, 0, 0.514);
    transition: all 0.4s;
}

form p{
    font-size: 4rem;
    margin-top: 0px;
}

/* form p:hover{
    zoom: 110%; 
} */

form input,button{
    padding: 5px 0px 5px 0px;
}


form button{
    font-size: 15px;
    font-weight: 700;
}

