*{

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;

}


body{
     background-image: url("./about/banner.jpg"); 
     margin: 8rem;
    display: flex;
    z-index: 1;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
}



.log-in {

    display: flex;  
    align-items: stretch;
    justify-content: center;
    row-gap: 2rem;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border-radius: 2rem;


  
   

}

.log-in-cont{

background-color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    border-radius: 50px;
    

}

img {

     width: 100%;
     height: 100%;
    border-radius: 2rem;
    
}

h1 {

    text-align: start;
}

.input-data {

    display: flex;
    flex-direction: column;
    row-gap: 1rem;


}

input {

    padding: 1rem 2rem;
    border-radius: 2rem;

    
}


.btn-cont{

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.login-btn{

    padding: 1rem 2rem;
    background: black;
    border-radius: 2rem;
    border: none;
    color: white;
    width: 250px;
    cursor: pointer;
   


}

.sign-in-link{

    text-decoration: none;
    color: #272727;
    margin: 1em;
}

.sign-in-link span {

    font-weight: bold;
}


#submit{

    padding: 1rem 2rem;
    background-color: black;
    color: white;
    border-radius: 50px;
    cursor: pointer;
}