.d_form {
    width: 40%;
    margin: 50px auto;
    background-color: white;
    padding-bottom: 20px;
    box-shadow: 12px 12px 2px 1px rgba(0, 0, 255, .2);
    border-radius: 20px;
}

.d_form h3 {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    background-color: #f6af20;
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 15px 0px;
    color: white;
    font-weight: bold;
    margin-top: 15px;
}

.d_form .input_container {
    width: 80%;
    margin: 20px auto;
}

.d_form input[type=text], input[type=password] {
    width: 100%;
    height: 25px;
}

.d_form select {
    width: 100%;
    height: 25px;
}

.d_form .ip_position {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.d_form .ip_container input[type=text] {
    width: 100%;
}

.d_form .send_btn {
    width: 80%;
    background-color: #00bd95;
    border: none;
    color: white;
    padding: 10px;
    font-size: 20px;
    margin: auto;
    display: block;
    cursor: pointer;
}

.d_form .send_btn:hover {
    background-color: #00916a;
}

.d_form .add_more_ip, .d_form .add_more_op {
    background-color: #00bd95;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
}

.d_form .add_more_ip:hover, .d_form .add_more_op:hover {
    background-color: #00916a;
}
 .d_form .remove_btn_ip, .d_form .remove_btn_acs {
     cursor: pointer;
    font-size: 22px;
 }

 .d_form .multiple {
     height: 100px;
 }

 .d_form .add_more_criterion_btn {
     width: 20%;
     display: block;
     margin: 10px auto;
     background-color: blue;
     color: white;
     border: none;
     font-size: 18px;
     cursor: pointer;
 }

.d_form .add_more_criterion_btn:hover {
    background-color: #1a1a79;
}

.d_form fieldset {
    width: 80%;
    margin: auto;
}

.d_form .remove_criterion {
    background-color: red;
    color: white;
    border: none;
    font-size: 18px;
    padding: 4px;
    cursor: pointer;
}

.d_form .remove_criterion:hover {
    background-color: #781717;
}

.textarea {
    width: 100%;
    height: 50vh;
}
