﻿@font-face {
    font-family: 'Roboto';
    src: url('Fuente/Roboto.ttf')
}


/* ESTILOS PROPIOS  
----------------------------------------------------------*/
* {
    font-family: Roboto;
}

h1 {
    font-size: 2rem;
    font-family: Roboto;
}

h2 {
    font-size: 1.75rem;
    font-family: Roboto;
}

h3 {
    font-size: 1.5rem;
    font-family: Roboto;
}

h4 {
    font-size: 1.25rem;
    font-family: Roboto;
}

h5 {
    font-size: 1rem;
    font-family: Roboto;
}

p {
    font-size: 0.875rem;
    font-family: Roboto;
}

a {
    color: #3264A6;
    text-decoration: none;
}


body {
    margin: 0;
}

#textLogo {
    font-size: 25px;
    font-family: Roboto;
    font-weight: bold;
}

#logoNomifacilLogin {
    width: 15rem;
}

#contenedorLogoNomifacil {
    height: 110px;
    width: 100%;
    display: flex;
    gap: 15px;
    align-items: end;
    justify-content: center;
}

#form1 {
    margin: 0px 20px;
}

#contenedor_der {
    display: none;
}

#contenedor_izq {
    width: 100%;
}

#contenedorLogin {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 110px);
    justify-content: space-around;
}

.inputLogin {
    box-sizing: border-box;
    background-color: #fdfdfd;
    width: 100%;
    border: 1px solid #d9d7d7;
    border-radius: 5px;
    padding: 12px 20px;
    margin: 5px 0px;
    font-size: 15px;
}

.inputLogin:focus {
    border: 1px solid #d9d7d7;
    outline-color:#cfcfcf;

}

.labelInput {
    font-weight: 600;
    font-size: 15px;
    margin-left: 1px;
    font-family: Roboto;
}

#btnIngresar {
    color: white;
    background-color: #3264A6;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 8px;
    width: 100%;
    padding: 13px;
    outline: none;
    font-size: 15px;
    border: 1px solid #246ccb;
}


#lblMensaje {
    color: #d71616;
    text-align: center;
    display: block;
    border-radius: 6px;
    font-size: 12px;
}

#contenedor_der > .context > p {
    color: white;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, Roboto;
    font-size: large;
}

.context {
    width: 100%;
    position: absolute;
    top:50vh;
    
}

.context h1{
    text-align: center;
    color: #fff;
    font-size: 50px;
}


.area {
    box-sizing: border-box;
    background: #3264a6;
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
    width: 100%;
    height: 100vh;
}

.circles{
    margin: 0;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

.material-input {
  --h-p: 0.5em;
  --v-p: 0.25em;
  --height: 2.5em;
  --border-size: 1px;
  --border-focused-size: 2px;
  border-radius: 0.5em;
  margin: 0.75em 0;
  display: flex;
  align-items: center;
  height: fit-content;
  width: fit-content;
  position: relative;
  background: var(--clr-bg);
  overflow: visible;
  width: 100%;
}
.material-input input {
  background-color: #fdfdfd;
  border: 1px solid #d9d7d7;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 8px;
  padding: var(--v-p) var(--h-p);
  box-shadow: 0 0 0 1px var(--clr-secondary);
  height: var(--height);
  transition: all ease 250ms 125ms;
  font-size: 15px;
  width:100%;
}
.material-input input::placeholder {
    opacity: 0;
    transition: all ease 250ms;
}
.material-input input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--clr-main);
}
.material-input input:focus::placeholder {
  opacity: 1;
}
.material-input label {
  position: absolute;
  left: 11px;
  transition: transform 250ms ease, font-size 250ms ease, color 250ms 125ms ease;
  background: #fdfdfd;
  padding: 0 calc(0.5 * var(--h-p));
  margin: 0 calc(0.5 * var(--h-p));
  line-height: 1;
  z-index: 3;
  color: var(--clr-secondary);
  pointer-events: none;
}
.material-input input:focus + label {
    color: var(--clr-main);
    background: #fdfdfd;
}
.material-input input:focus + label,
.material-input input:not(:placeholder-shown) + label {
  font-size: 0.75em;
  transform: translateY(calc(-0.70 * var(--height) - var(--border-focused-size))) translateX(0.5em);
}

@media only screen and (min-width: 576px) {
    #contenedor_der {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    #form1 {
        display: flex;
        margin: 0px 0px;
        min-height: 100vh;
    }

    #contenedor_izq {
        width: 20rem;
        padding: 0px 25px;
        flex-grow: 0;
    }

    #contenedor_der {
        display: block;
        flex-grow: 1;
        position: relative;
        z-index: 0;
        background-color: #3264A6;
    }

    #contenedor_der > .context > p {
        width: 80%;
    }

    #contenedor_der::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(../Images/auth-bg.jpg);
        background-size: cover;
        background-position: center;
        opacity: 0.1; 
        z-index: 1;
    }
}

@media only screen and (min-width: 992px) {
    #contenedor_izq {
        width: 20rem;
        padding: 0px 50px;
        flex-grow: 0;
    }
}

@media only screen and (min-width: 1200px) {
    #contenedor_der > .context > p {
        width: auto;
    }
}

@media only screen and (min-width: 1400px) {
}