.col-1 {
    width: 8.333%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-2 {
    width: 16.666%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-3 {
    width: 25%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-4 {
    width: 33.333%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-5 {
    width: 41.666%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-6 {
    width: 50%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-7 {
    width: 58.333%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-8 {
    width: 66.666%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-9 {
    width: 75%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-10 {
    width: 83.333%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-12 {
    width: 100%;
    padding: 0 12px 0 12px;
    float: left;
}




.form-group {
    margin-bottom: 15px;
}

.form-control {
    border: none;
    display: block;
    width: 100%;
    height: 67px;
    border: 3px solid #ddd;
    border-radius: 5px;
    padding: 9px 20px;
    font-size: 18px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    accent-color: var(--themeColor);
}

.form-group label {
    margin-left: 25px;
    letter-spacing: 2px;
}

.form-group input:focus {
    border: 3px solid rgb(66, 88, 110);
}

.btn {
    width: 100%;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    display: inline-block;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-image: none;
    border: 5px solid #fff;
    border-radius: 5px;
    -webkit-transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
    transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: 6px 12px;
    margin: 10px 0 20px 0;
}

.btn-warning {
    background-color: orange;
    border-color: orange;
}

.btn-success {
    background-color: rgb(47, 193, 47);
    border-color: rgb(47, 193, 47);
}

.btn-danger {
    background-color: rgb(255, 0, 0);
    border-color: rgb(255, 0, 0);
}

.btn:hover {
    filter: contrast(1.5);
}

.col-12 h3 {
    text-align: center;
    margin: 60px 0 0px 0;
}

.col-12 hr {
    width: 100%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}


input[type=file] {
    height: 65px;
    border: none;
}

    input[type=file]::file-selector-button {
        margin-right: 20px;
        border: none;
        background: var(--themeColor);
        padding: 10px 20px;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        transition: background .2s ease-in-out;
    }

        input[type=file]::file-selector-button:hover {
            background: var(--themeColorHover);
        }

.ppFoto{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
}




@media all and (max-width: 1250px) and (min-width: 850px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6 {
        width: 50%;
    }

    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        width: 100%;
    }
}

@media all and (max-width: 850px) and (min-width: 50px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        width: 100%;
    }
}
