*{
    box-sizing: border-box;
    font-family: "Poppins";
}
.nav-border{
    border-bottom: 2px #d3d3d3 solid;
    position: sticky;
    top: 0px;
    z-index: 9999;
    background-color: white;
}
.nav-border header div a{
    border-radius: 10px;
}
.nav-border header div{
    display: flex;
    gap: 10px;
}
.data-area{
    border: solid 2px rgb(177, 177, 177);
    padding: 20px 20px;
    border-radius: 10px;
}
section form input{
    border-radius: 10px;
    border: solid 2px #d3d3d3;
    height: 45px;
    text-indent: 10px;
    outline: none;
}
section form input:focus{
    border: solid 2px #238d92;
}
section form button[type= submit] {
    background-color: #238d92;
    color: white;
    border-radius: 10px;
    border: solid 2px #d3d3d3;
    height: 45px;
    text-indent: 10px;
    outline: none;
}
