/* Eingabe Maske */
.row {
    display: -ms-flexbox; /* "IE10" */
    display: flex;
    -ms-flex-wrap: wrap; /* "IE10" */
    flex-wrap: wrap;
    margin: 0 -16px;
}

.col-50 {
    -ms-flex: 50%;    /* "IE10" */
    flex: 50%;
    padding: 0 16px;
}

input[type=text], select, textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
}

label {
    margin-bottom: 10px;
    display: block;
}

/* Set Style for all Button */
button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

button:hover {
    opacity: 1;
}

.cancelbtn, .signupbtn {
    float: left;
    width: 50%;
}

.clearfix:after {
    content: "";
    clear: both;
    display: table;
}

/* Extra Style for cancel Button */
.cancelbtn {
    padding: 14px 20px;
    background-color: #f44336;
}

/* Responsitive Layout, when the screen smaler than 700px width */
@media (max-width: 700px) {
    .row {
        flex-direction: column;
    }
    .col-50 {
        margin-bottom: 20px;
    }
}
