/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

@media screen and (max-width: 1350px) {
    .se-register-form {
        max-width: 450px;
    }
}

@media screen and (max-width: 1245px) {
    .se-register-form {
        max-width: 400px;
        width: 100%;
    }
    .se-register-form .odd,
    .se-register-form .even {
        width: 100%;
    }
}

@media screen and (min-width: 1246px) {
    .se-register-form {
        width: 500px;
    }
    .se-register-form .odd {
        width: 49%;
        float: left;
    }
    .se-register-form .even {
        width: 49%;
        float: right;
    }
}

.se-register-form {
    padding: 20px;
    background-color: #58595b;
    color: #fff !important;
    line-height: normal;
    height: auto!important;
    margin: 28px;
}

.se-register-form a {
    color: #fff;
    font-weight: 450;
}

.se-register-form h2 {
    color: #fff !important;
    margin-bottom: 20px;
    margin-top: auto;
    font-size: 35px!important;
    letter-spacing: 0.5px!important;
}

.se-register-form p {
    color: #fff;
    text-align: justify;
    font-size: 13px;
    font-style: italic;
}

#se-register-form_default {
    margin-bottom: 0 !important;
}

.se-register-form .se_form_field {
    width: 100%;
    background: #fff;
    color: #686868;
    margin-bottom: 9px;
    margin-left: auto !important;
    display: block;
    font-size: 16px;
    outline: none;
    height: auto;
    padding: 4px 8px;
    position: relative;
    text-indent: 0.01px;
    vertical-align: middle;
    z-index: 5;
}

.se-register-form .se_form_button {
    width: 100%;
    background-color: #bb1d2c;
    padding: 10px !important;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0.5em;
}

.consent-info {
    display: inline-table;
    font-style: italic;
}


/*helpers*/

.align_center {
    text-align: center;
}

.text_smaller {
    font-size: small;
    color: #ddd;
    text-align: justify;
}

.zero_margin {
    margin: 0;
}

.tooltipster-content {
    color: #B22222;
}

#se-register-loading {
    background-image: url('loadingicon.png');
    margin: 0 auto;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    12.5% {
        transform: rotate(45deg);
    }
    25% {
        transform: rotate(90deg);
    }
    37.5% {
        transform: rotate(135deg);
    }
    50% {
        transform: rotate(180deg);
    }
    62.5% {
        transform: rotate(225deg);
    }
    75% {
        transform: rotate(270deg);
    }
    87.5% {
        transform: rotate(315deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#se-register-loading,
#se-register-reset {
    display: none;
}