.form-control:focus{
    background: transparent !important;
}
.padreformularios {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.divicionformulario {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}

.formularioazul {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: #003470;
    color: white;
}
.formularioazul input{
border: 1px solid white;
background-color: #295383 !important;
color: white !important;
}
.formularioblanco input{
    border: 1px solid gray;
}
.formularioblanco {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: #ffffff;
    color: rgb(0, 0, 0);
}
input{
    border-radius: 30px !important;
}
.btn-registro{
    background: #73D855;
    width: 80%;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    border: 2px solid #73D855;
    color: white;
    margin-bottom: 30px;
}
.btn-registro:hover{
    background: white;
    width: 80%;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    border: 2px solid #73D855 !important;
    color: #73D855 !important;
    margin-bottom: 30px;
}
/* mostrar y ocultar contraseña */
.password-showHide {
    position: absolute;
    right: 10px;
    top: 42px;
    display: grid;
    cursor: pointer;
    z-index: 99;
}

.password-showHide .icon {
    grid-row: 1/2;
    grid-column: 1/2;
}

.password-showHide .icon path {
    fill: #c2c2c2;
    transition: all 0.2s ease;
}

.password-showHide:hover .icon path {
    fill: #55A0CF;
    transition: all 0.2s ease;
}

.password-showHide .icon.show-password {
    opacity: 1;
    z-index: 9;
}

.password-showHide .icon.hide-password {
    opacity: 0;
    z-index: -1;
}

.password-showHide.hide .icon.show-password {
    opacity: 0;
    z-index: -1;
}

.password-showHide.hide .icon.hide-password {
    z-index: 9;
    opacity: 1;
}

.contra {
    position: relative;
    width: 100%;
    border: transparent;
    padding: 0px !important;
    width: 100%;
}
@media (max-width: 767px) {
    .formularioazul{
        width: 100%;
    }
    .formularioblanco{
        width: 100%;
    }
}
