body{
    width: 100%;
    height: 667px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: bisque;
}

.box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background-color: #000 !important;
    border-radius: 8px;
}

.contentform{
    margin: 5%;
}

.form-control{
    border-color: darkgreen;
    border-style: solid;
    border-width: 0 0 1px 0;
}

.form-control:focus{
    border-width: 0 0 3px 0;
    color: #929092;
    box-shadow: none;
    transition: all 0.1s ease-out;
}

.btn{
    border-radius: 20px;
}