.container {
    padding: 2rem;
}

.aptus-title {
    font-family: sans-serif;
    text-align: left;
    color: #333;
    padding: 10px 30px;
}

.aptus-form * {
    font-family: sans-serif;
}

.aptus-form table {
    border-spacing: 15px;
}

.aptus-form table tr td {
    vertical-align: top;
}

.aptus-form input[type="text"],
.aptus-form input[type="password"],
.aptus-form input[type="email"],
.aptus-form textarea {
    padding: 10px 15px;
    width: 100%;
    border: 2px solid #aaa;
    border-radius: 5px;
}

.aptus-form input:focus,
.aptus-form textarea:focus {
    outline: none;
    border-color: #7b9bb5;
}

.aptus-checkbox {
    float: left;
    width: 25%;
    margin-left: 5%;
    padding: 7px 35px;
    border: 2px solid transparent;
    border-radius: 5px;
}

/* custom aptus-checkbox */

.aptus-checkbox {
    display: block;
    position: relative;
    padding-left: 37px;
    margin-top: 4px;
    cursor: pointer;
    user-select: none;
}


.aptus-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


.checkmark {
    position: absolute;
    left: 5px;
    height: 20px;
    width: 20px;
    background-color: #bbb;
    border-radius: 2px;
    transition: .3s;
}


.aptus-checkbox:hover input ~ .checkmark {
    background-color: #0b4b80;
}


.aptus-checkbox input:checked ~ .checkmark {
    background-color: #0b4b80;
}


.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


.aptus-checkbox input:checked ~ .checkmark:after {
    display: block;
}


.aptus-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}


/* custom file selector */
#image {
    position: absolute;
    display: none;
}

label[for="image"]:nth-child(2){
    max-width: 70px;
    padding:0.5em;
    display:inline-block;
    background: #ddd;
    border: 1px solid #bbb;
    border-width: 1px 1px 1px 0;
    margin-top: 4px;
    border-radius: 0 4px 4px 0;
    cursor:pointer;
    transition: .2s;
}
label[for="image"]:nth-child(2):hover {
    background:#ccc;
}

#filename{
    padding:0.5em;
    float:left;
    width:200px;
    margin-top: 4px;
    white-space: nowrap;
    overflow:hidden;
    background: #eee;
    border: 1px solid #bbb;
    border-radius: 4px 0 0 4px;
}