/* Formulario */
/* titulo */
.bugaregister-form-title{
    color: #0A4B25;
    text-transform: uppercase;
    padding-bottom: 1rem;
}
.bugaregister-register-form .form-container{
    padding: 0;
}
@media screen and (max-width: 768px) {
    .bugaregister-register-form .form-container{
        padding: 1rem;
    } 
}
.bugaregister-register-form .form-container form{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 2rem 1rem 0;
    column-gap: 2%;
    box-shadow: 0px 1px 5px 0px #dddddd;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.bugaregister-register-form .form-container form .felement {
    max-width: 100%;
    flex: 0 0 100%;
}

.bugaregister-register-form .form-container-image{
    border-top-right-radius: 20px;
    overflow: hidden;
    border-bottom-right-radius: 20px;
}
.bugaregister-register-form .form-container-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}
@media screen and (max-width: 990px) {
    .bugaregister-register-form .form-container-image img{
        display: none;
    } 
}


/* Campos del formulario */
.buga-form-field{
    max-width: 45%;
}
@media screen and (max-width: 540px) {
    .buga-form-field{
        max-width: 100%;
    } 
}
.bugaregister-register-form .form-control{
    width: 100%;
}

.buga-form-field .fitem{
    position: relative;
}

.buga-form-field .fitem .col-form-label{
    position: absolute;
    top: -.75rem;
    left: 0.8rem;
    padding: 0;
    z-index: 1;
    background: transparent;
    width: 100%;
    max-width: 100%;
    scale: .9;
    column-gap: 0.5rem;
    font-weight: 600;
    text-align: left;
}
.buga-form-field .fitem .col-form-label label{
    margin: 0;
    background: #fff;
    color: #777;
}
.buga-form-field .fitem .col-form-label p{
    margin: 0;
    background: #fff;
    color: #777;
}

/* Campo contraseña */
.bugaregister-register-form #fitem_id_passwordregister .col-md-9>span{
    display: flex;
    align-items: center;
    gap: .2rem;
}
/*Campo tipo de domicilio*/
#id_addresstype{
    width: 100%;
}
/* Boton de crear usuario */
.bugaregister-register-form #id_submitbutton{
    background-color: #0A4B25;
    border: none;
}

/*  Ocultar la descripcion de requerido */
.bugaregister-register-form .form-container form .fdescription{
    display: none;
}

/* Info success form */
.bugaregister-register-form-success .form-container-success{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 2rem;
    box-shadow: 0px 1px 5px 0px #dddddd;
    border-radius: 10px;
}

.bugaregister-register-form-success .form-container-success i{
    filter: invert(51%) sepia(60%) saturate(778%) hue-rotate(73deg) brightness(87%) contrast(81%);
    font-size: 32px;
    width: 32px;
    height: 32px;
    margin-bottom: 2rem;
}

.bugaregister-register-form-success .form-container-success p{
    font-family: 'poppins', Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: center;
    margin-bottom: 2rem;
    color: #000023;
    font-weight: normal;
}
.bugaregister-register-form-success .form-container-success .form-container-success-redirect-login{
    display: flex;
        align-items: center;
        width: 50%;
        background-color: #0A4B25;
        color: #fff;
        font-family: poppins;
        justify-content: center;
        font-weight: bold;
}
.bugaregister-register-form-success .form-container-success .form-container-success-redirect-login span i{
    filter: invert(0%) sepia(0%) saturate(7485%) hue-rotate(41deg) brightness(92%) contrast(103%);
    margin: 0 0 0 1rem;
    font-size: 16px;
    width: 16px;
    height: 16px;
}