.text-primary{
    color:black !important;
}
html{
    height:100%;
}
body {
    background-color: #d0c9c92b;
    background: var(--url-background-image) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height :100%;
}
.box{
    background: #ffffff;
    border:1px solid var(--azul-claro);
    border-radius: 5px;
    box-shadow: 1px 0 5px rgba(0,0,0,.1);
    width:400px;
    text-align:left;
    padding:20px 20px;
    margin: auto;
}
.box img{
    margin:auto;
}
.box h3{
    margin-top:0;
}
input[type="submit"]{
    margin-bottom:10px;
    border:none;
}
#user-profile input[type=radio] {
    display: none;
}
#user-profile label {
    border: 1px solid #F5B681;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 0 5px 5px 0;
    color: #F5B681;
    cursor: pointer;
    width: 50%;
    float: left;
    text-align: center;
    padding: 6px;
}
#user-profile .client {
    border-radius: 5px 0 0 5px;
}
#user-profile label:hover,
#user-profile label.active {
    background-color: #F5B681;
    color: #fff;
}
.btn-primary{
    background-color: var(--azul-claro) !important;
    color: white;
}
.btn-primary:hover{
    background-color: var(--azul-oscuro) !important;
}
.bg-light{
    background:#ddd;
    width:400px;
    text-align:center;
    margin:auto;
    padding-top:8px;
    padding-bottom:8px;
}
.checkbox label{
    padding-left:0;
}
.logo {
    margin-bottom: 12px;
}
.animation{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
.flipInX {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    backface-visibility: visible !important;
    animation-name: flipInX;
}
.normal-process {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.normal-process a {
    margin: 0;
    padding: 9px 18px;
}
.facebook-button {
    margin-top: 12px;
    text-align: center;
    width: 100%;
}
.fb_iframe_widget {
    width: 90%;
}
.box1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (max-width: 575px) {
    .normal-process {
        justify-content: space-between;
        width: 100%;
        padding: 0 7px;
    }
    .normal-process a {
        padding: 9px 12px;
    }
}