.div-form-main-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.div-form-main-wrapper label {
    font-family: "Unimed Slab", sans-serif;
    color: #00985c;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    margin-right: 10px;
    margin-bottom: 0px;
}

.div-form-main-wrapper input {
    height: 35px;
    font-size: 15px;
    line-height: 1.428571429;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    width: 100%;
    padding: 5px;
}

.div-form-main-wrapper input[type="date"] {
    background: #fff url("/static/assets/primeiroAcesso/calendar_2.png") 97% 50% no-repeat;
}

.div-form-main-wrapper  input:focus{
    -webkit-appearance: none;
    border-radius: 0px;
    border-left: 1px solid green;
    border-right: 1px solid green;
    border-top: 1px solid green;
    border-bottom: 1px solid green;
    color: #00985c;
}

.div-form-main-wrapper input[type="text"]:focus, .div-form-main-wrapper input[type="number"]:focus {
    background-image: linear-gradient(white 0%, #fff 100%);
}

.div-form-main-wrapper input[type="number"]:disabled, .div-form-main-wrapper input[type="text"]:disabled {
    -webkit-appearance: none;
    border-radius: 0px;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid #cccccc;
    background-image: linear-gradient(white 0%, #fff 100%);
}

/* row wrapper */
.div-form-main-row-wrapper {
    display: flex;
    flex-direction: row;
    margin: 10px 0px;
    align-items: center;
}

.div-form-main-input-no-grow-wrapper {
    flex: 0 1 auto;
}

/* select */
.div-form-main-row-wrapper select {
    font-size: 15px;
    background-image: linear-gradient(white 0%, white 100%);
    border: 1px solid #cccccc;
    border-radius: 0px;
    padding: 5px;
    color:#333333;
}

.div-form-main-row-wrapper select:focus {
    border-color:green;
}

.div-form-main-wrapper input[type="submit"]{
    height: initial;
    border-radius: 5px;
    background-color: #00985c;
    text-transform: uppercase;
    color: white;
    padding: 9px;
    width: 100%;
}

.div-form-main-wrapper input[type="submit"]:hover{
    background-color: rgba(0, 152, 92, 0.882353);
}

.div-form-main-wrapper input[type="submit"]:focus{
    background-color: rgba(0, 152, 92, 0.882353);
    background-image: initial;
    border: 1px solid #cccccc;
}
