@import url("../css/variables.css");
@import url("../../css/columnas.css");
@import url("../css/header-intranet.css");
@import url("../css/tablas.css");
@import url("../../iconos-web/iconos-web.css");

body {
    margin: 0;
    padding: 0px;
    font-family: var(--fuente-textos);
    background: var(--color2);
    font-size: 10pt;
    color: var(--color4);
    width: 100%;
    height: 100vh;
    background: url(../images/fondo-intranet.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contenedor-formulario {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.contenedor-formulario-interno {
    width: 100%;
    height: 100%;
}

.contenedor-formulario-interno h2,
.contenedor-formulario h2,
.contenedor-form-admin h2 {
    font-size: 1.5em;
    color: var(--color4);
    text-align: center;
    padding-top: 10px;
}

.contenedor-formulario-interno h3,
.contenedor-formulario h3 {
    font-family: var(--fuente-llamados);
    font-size: 3.5em;
    color: var(--color4);
    text-shadow: 5px 5px 3px var(--sombras);
    padding-bottom: 10px;
    text-align: center;
}

.contenedor-form,
.contenedor-form-admin {
    background: rgba(0,0,0,.8);
    border: 1px solid var(--borde-tablas);
    border-radius: 25px;
    color: var(--color4);
    position: relative;
    padding: 20px;
    margin: 0;
}

.contenedor-form-admin {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contenedor-form h2,
.contenedor-form-admin h2 {
    margin: 0 0 28px 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.contenedor-form input,
.contenedor-form input[type="text"],
.contenedor-form input[type="password"],
.contenedor-form input[type="email"],
.contenedor-form textarea,
.contenedor-form select,
.contenedor-form-admin input[type="text"],
.contenedor-form-admin input[type="password"],
.contenedor-form-admin input[type="email"],
.contenedor-form-admin textarea,
.contenedor-form-admin select {
    font-family: inherit;
    outline: none;
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    margin: 0 0 5px 0;
    background: rgba(0,0,0,.5);
    color: var(--color4);
    border: none;
    border-radius: 2px;
    border-bottom: 2px solid var(--color8);
    box-sizing: border-box;
    font-size: 13pt;
    font-weight:normal;
    transition: all .5s ease;
    text-transform: uppercase;
}

/*  CHECKBOX  */

.content-input {
    position: relative;
    margin-bottom: 30px;
    padding: 5px 0 5px 60px;
    display: block;
}
.content-input input[type="checkbox"] {
    visibility: hidden;
    position: absolute;
    right: 0;
}

.content-input input[type="checkbox"] + span {
    font-size: 15pt;

}
.content-input input[type="checkbox"] + span + i {
    width: 52px;
    height: 30px;
    border-radius: 15px;
    background: var(--color1);
    border: 2px solid rgba(0,0,0,.2);
    position: absolute;
    left: 0;
    top: 0;
}

.content-input input[type="checkbox"] + span + i:before {
    content: "";
    width: 26px;;
    height: 26px;
    background: var(--color8);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    box-shadow: 3px 0 3px 0 rgba(0,0,0,.2);
}
.content-input input[type="checkbox"]:checked + span + i:before  {
    left: 20px;
    background: var(--color4);
    box-shadow: 3px 0 -3px 0 rgba(0,0,0,.2);
}
.content-input input[type="checkbox"]:checked + span + i {
    background: var(--color8);
}
.content-input input[type="checkbox"] + span + i:after {
    content: "ON";
    position: absolute;
    font-size: 12px;
    color: rgba(255,255,255,.6);
    top: 8px;
    left: 2px;
    opacity: 0;
    transition: all 0.25s ease 0.25s;
}
.content-input input[type="checkbox"]:checked + span + i:after {
    opacity: 1;
}
/*  HASTA ACA CHECKBOX  */

.contenedor-form-admin span {
    font-size: 12pt;
    margin: 0 15px 0 5px;
}

.contenedor-form input[type="text"]:focus,
.contenedor-form input[type="password"]:focus,
.contenedor-form input[type="email"]:focus,
.contenedor-form select:focus,
.contenedor-form textarea:focus,
.contenedor-form-admin input[type="text"]:focus,
.contenedor-form-admin input[type="password"]:focus,
.contenedor-form-admin input[type="email"]:focus,
.contenedor-form-admin select:focus {
    border-bottom: 1px solid var(--color2);
}

.contenedor-form input[type="submit"],
.contenedor-form-admin input[type="button"],
.contenedor-form-admin input[type="submit"] {
    background: var(--color8);
    color: var(--color1);
    width: 100%;
    border: none;
    padding: 10px 0;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .5s ease;
    border-radius: 25px;
    margin-top: 20px;
}


.contenedor-form input[type="submit"]:hover,
.contenedor-form-admin input[type="submit"]:hover {
    background: var(--boton-over);
}

/* INPUT FILE */
.input__file {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid var(--color8);
    border-bottom: 1px solid var(--color8);
    padding-bottom: 15px;
}
.input__file .subtitulo {
    font-size: 16pt;
    width: 100%;
    text-align: center;
    border-bottom: 1px dotted var(--color8);
    margin: 0;
    margin-bottom: 10px;
}
  .contenedor-btn-file input[type="file"] {
    appearance: none;
    display: none;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
  }

  .contenedor-btn-file {
    display: inline-block;
    position: relative;
    background-color: var(--color8);
    color: var(--color4);
    border: 0;
    font-size: 12pt;
    padding: 12px 10px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, .15);
    overflow: hidden;
    transition: ease-out 120ms background-color;
  }

  .contenedor-btn-file:hover {
    background-color: var(--color8a);
    color: var(--color4);
  }

  .contenedor-btn-file:active {
    background-color: var(--color8);
  }

  .contenedor-btn-file>span {
    margin-right: 15px;
  }

  .contenedor-btn-file label {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    cursor: pointer;
  }

  .contenedor-btn-file.bordeado {
    background-color: #fff;
    border: 2px solid #186CC3;
    color: #186CC3;
  }

  .contenedor-btn-file.bordeado:hover {
    background-color: #186CC3;
    color: #fff;
  }
/* HASTA ACA INPUT FILE */

.boton {
    background: var(--color8);
    color: var(--color1);
    width: 100%;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .5s ease;
    border-radius: 25px;
}

.boton:hover {
    background: var(--boton-over);
}

.contenedor-form .reset-password,
.contenedor-form-admin .reset-password {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    margin-top: 10px;
}

.contenedor-form .reset-password a {
    color: var(--color4);
    text-decoration: none;
    font-size: 16px;
}

.contenedor-form .reset-password a:hover {
    text-decoration: underline;
}

.contenedor-form .formulario {
    display: none;
    padding: 40px;
}

.contenedor-form .formulario:nth-child(1),
.contenedor-form-admin .formulario:nth-child(1) {
    display: block;
}

.error{
    background-color: #E74F4F;
    position: absolute;
    top: 0;
    padding: 10px 0 ;
    border-radius:  0 0 5px 5px;
    color: var(--color4);
    width: 100%;
    text-align: center;
    display: none;
}
.contenedor__detalle img {
    width: 100%;
}
.contenedor__detalle .contenedor-item {
    /*border-bottom: 1px solid var(--color4);*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
/*   IMAGENES PRODUCTOS */

img.zoom {
width: 50px;
height: 50px;
transition: all .2s ease-in-out;
}
		 
.transition {
transform: scale(5.8);
}

/*  HASTA ACA IMAGENES DE PRODUCTOSS*/

footer {
    width: 100%;
    background: var(--color8);
    padding: 20px 5px;
    text-align: center;
    font-size: 12pt;
    margin-top: 20px;
    
}
footer img {
    display: inline-block;
}
/* hasta */
@media(max-width:768px) {
    .contenedor-formulario-interno,
    .contenedor-formulario {
        flex-direction: column;
    }
    .contenedor-formulario-interno,
    .contenedor-formulario {
        padding: 0px;
    }
    .contenedor-form-admin {
        min-width: 97%;
        display: block;
        margin: 0 auto;
    }
    .contenedor-form {
        padding: 0;
        margin: 0;
    }
}