*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;  
}

.main-container img{
    height: 90px;
}

.main-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-container{
    display: flex;
    flex-direction: column;
    background-color: white;
    height: 300px;
    width: 350px;
    box-sizing: border-box;
    padding: 25px;
    /* text-align: center; */
    justify-content: center;
    align-items: flex-start;
    border-radius:5px ;
    box-shadow: 0 0 1px ;

}

.login-container h2, label, input, button, p{
    margin-bottom: 20px;
}

.login-container input, button{
    width: 300px;
    padding: 5px;
}

.login-container p, a{
    font-size: 12px;
}

.login-container button{
    background-color: rgb(249, 230, 14);
    border: none;
    border-radius: 10px;
    padding: 6px;
    font-weight: 200;
    box-shadow: 0 0 1.5px;
}

.login-container a{
    text-decoration: none;
    color: rgb(49, 131, 164);
}

.linediv a{
    text-decoration: none;
    color: gray;
}
.linediv {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    justify-content: center;
}

.linediv::before,
.linediv::after {
    content: '';
    flex: 0.1;
    border-bottom: 2px solid #828282a4; /* Line color (adjust as needed) */
}

.linediv:not(:empty)::before {
    margin-right: 0.25em; /* Spacing between line and text */
}

.linediv:not(:empty)::after {
    margin-left: 0.25em; /* Spacing between line and text */
}



.create-button{
    text-align: center;
}

.create-button button{   
    box-shadow: 0px 0px 2.5px;
    padding: 8px;
    border-radius: 5px;
    width: 300px;
    text-align: center;
    background-color: white;
    border: none;
    outline: none;
    cursor: pointer;
}

.create-button button:hover{
    background-color: rgba(237, 227, 227, 0.91);
}

main{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

footer{
    background-color: #f3f6fa; /* f3f6fa */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    height: 237px;
}

footer p{
    color: rgb(84, 81, 81);
    font-size: 12px;
    text-align: center;
    font-weight: 400;
}

footer div{
    margin-bottom: 50px;
}

footer a{
    text-decoration: none;
    color: #39b0d1;
    margin-right: 35px;
    cursor: pointer;
    text-align: center;
}



