/*estos 2 codigos (html,body) para que la página se ajuste a todo tipo de pantallas*/
html{
    max-width: 100vw !important;
    overflow-x: hidden !important;
}
body{
    /*font-family: Helvetica, sans-serif;*/
    max-width: 100vw !important;
    overflow-x: hidden !important;
}


#formulario{
    background-color: #0a7877 !important;
}
.campo{
    width: 85% !important;
    margin-bottom: 30px !important;
}
h6{
    color: #e99787;
}
#agregar_integrante h6{
    text-align: left !important;
}

/*fondo General*/
.general-background {
    /*filter: blur(5px);*/
    /*-webkit-filter: blur(5px);*/
    background-size: cover !important;
    background-position: center center !important;
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity:0.7;
    background-image: url('../../assets/img/gastos-compartidos-2.jpg');
    /*background-color: #ffeadb;*/
    }


/*cuadro de inicio de sesión*/
#box-inicio{
    background-color:#0a7877;/*#e5e5e5; /*#0D676A */
    /*background-color: black;*/
    margin:30px auto;
    width: 400px;
    padding:30px;
    opacity:0.9;
    text-align:center;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
}

/*campo para llenar datos (Para formularios)*/
.campo{
    height:45px;
    border-radius:7px;
    padding:4px;
    border: solid thin #aaa;
    width:90%;
    font-size:23px;
    }

/*boton*/
#boton-ingresar{
    padding:10px;
    width:180px;
    border-radius:20px;
    font-size:18px;
    text-align:center;
    border:solid #4ecdc4 4px;
    background-color:transparent;
    color:white;
}
#boton-ingresar:hover{
    background-color:#4ecdc4;
    font-size:18px;
    color:black;
    border:solid white 4px;
}


/*****Para el Spin de carga*****/
#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    /*background-color: rgba(255,255,255,0.7);*/
    background-color: rgba(255, 255, 255, 0.805);
    z-index:9999;
    display:none;
    color:green;
    text-align: center;
    padding-top:450px;
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:50px;height:50px;
    border-style:solid;
    border-color:black;
    border-top-color:transparent;
    border-width: 5px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}
/*****Fin Para el Spin de carga*****/