input[type=text], textarea, input[type=password], input[type=email], input[type=number]
{
    height: 40px;
    width: 100%;
    border: 1px solid #E0E4EA;
    border-radius: 5px;
    padding: 10px 10px 10px 14px;
    margin: 5px 0 5px 0;
}

input[type=text]:focus, textarea:focus, input[type=password]:focus, input[type=email]:focus, input[type=number]:focus
{
    border: 1px solid #B1BCCB;
    border-left: 5px solid #0084ff;
    outline: none;
    padding: 10px;
}

input[type=text]:hover, textarea:hover, input[type=password]:hover, input[type=email]:hover, input[type=number]:hover
{
    border: 1px solid #B1BCCB;
    border-left: 5px solid #0084ff;
    padding: 10px;
}

textarea
{
    width: 100%;
    border: 1px solid #E0E4EA;
    border-radius: 5px;
    padding: 10px 10px 10px 14px;
    margin: 5px 0 5px 0;
}

textarea:focus
{
    border: 1px solid #B1BCCB;
    border-left: 5px solid #0084ff;
    outline: none;
    padding: 10px;
}

textarea:hover
{
    border: 1px solid #B1BCCB;
    border-left: 5px solid #0084ff;
    padding: 10px;
}

.error + input[type=text]:hover, textarea:hover, input[type=password]:hover, input[type=email]:hover, input[type=number]:hover
{
    border: 1px solid #B1BCCB;
    border-left: 5px solid #0084ff;
    padding: 10px;
}

input[type=date], select
{
    height: 40px;
    width: 100%;
    border: 1px solid #E0E4EA;
    border-radius: 5px;
    padding: 10px 10px 10px 14px;
    margin: 5px 0 5px 0;
    color: grey;
}

input[type=date]:focus, select:focus
{
    border: 1px solid #B1BCCB;
    border-left: 5px solid #0084ff;
    outline: none;
    padding: 10px;
    margin: 5px 0 5px 0;
}

input[type=date]:hover, select:hover
{
    border: 1px solid #B1BCCB;
    width: 100%;
    border-left: 5px solid #0084ff;
    padding: 10px;
    margin: 5px 0 5px 0;
}

input[type=submit], button
{
    color: #007CFE;
    background-color: #FFFFFF;
    width: 100%;
    padding: 10px;
    border: 1px solid #007CFE;
    border-radius: 5px;
    margin: 10px 0 10px 0;
    cursor: pointer;
}

input[type=submit]:focus, button:focus
{
    color: white;
    background-color: #007CFE;
    width: 100%;
    padding: 10px;
    border: 1px solid #007CFE;
    border-radius: 5px;
    margin: 10px 0 10px 0;
}

input[type=submit]:hover, button:hover
{
    color: white;
    background-color: #007CFE;
    width: 100%;
    padding: 10px;
    border: 1px solid #007CFE;
    border-radius: 5px;
    margin: 10px 0 10px 0;
}

input[type=checkbox], input[type=radio]
{
    accent-color: #007CFE;
    padding: 5px;
    transform: scale(1.5);
}

input[type=submit]+.small, button+.small, .button+.small
{
    width: fit-content !important;
    display: inline;
}

.wrong
{
    border: 1px solid rgb(230, 0, 0);
}

.correct
{
    border: 1px solid rgb(0, 153, 0);
}

.wrong:focus, .wrong:hover
{
    border-left: 5px solid rgb(230, 0, 0) !important;
}

.correct:focus, .correct:hover
{
    border-left: 5px solid rgb(0, 153, 0) !important;
}

input:disabled
{
    cursor: not-allowed;
}

/*.button
{
    color: #FFFFFF;
    background-color: #007CFE;
    margin: 10px 0 10px 0;
    padding: 10px;
    border: 1px solid #007CFE;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
    display: inline-block;
}

.button:focus
{
    color: #007CFE;
    background-color: #FFFFFF;
    border: 1px solid #007CFE;
    border-radius: 5px;
    margin: 10px 0 10px 0;
}

.button:hover
{
    color: #007CFE !important;
    background-color: #FFFFFF;
    border: 1px solid #007CFE;
    border-radius: 5px;
    margin: 10px 0 10px 0;
}*/

.small
{
    font-size: small;
}

.outline
{
    color: #007CFE;
    background-color: #FFFFFF;
}

@media only screen and (min-width: 768px)
{
    /* For desktop: */
    .half
    {
        padding: 0;
        margin: 0;
        display: inline-block;
        width: 49.7%;
    }

    .half:last
    {
        float: right;
    }
}



/* Customize the label (the checkbox) */
.checkBox
{
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1.1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkBox input
{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkMark
{
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #EEEEEE;
}

/* On mouse-over, add a grey background color */
.checkBox:hover input ~ .checkMark
{
    background-color: #CCCCCC;
}

/* When the checkbox is checked, add a blue background */
.checkBox input:checked ~ .checkMark
{
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkMark:after
{
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkBox input:checked ~ .checkMark:after
{
    display: block;
}

/* Style the checkmark/indicator */
.checkBox .checkMark:after
{
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}