@charset "utf-8";

:root {
	  --letra-1: #272931;
	}

html {
	height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
	width: 100%;
	background-color: #141d26;
	height: 40px;
}

body {
	height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	text-align:center;
	margin:0 auto;
	padding: 0%;
	background-color:#2d2e4d;
	background:url(../imagenes/fondo-oscuro.png);
	flex-direction: column;
}

footer {
	color: #fff;
}

.caj_tex {
	text-transform: uppercase; 
}

.clinica-inputs {
	box-shadow: 0px 2px 4px -1px #ccc;
    height: 40px;
    border-radius: 0px;
    border: 1px solid #787878;
    font-weight: 100;
    box-sizing: border-box;
    width: 100%;
    font-size: 13px;
    color: var(--letra-1) !important;
    padding: 10px;
}

.fcon {	
    background-color: #fff;
    margin: 0px;
    box-shadow: 1px 1px 4px 0px #ccc;
    padding: 0px;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
    height: fit-content;;
    padding: 20px 20px;
}

.s-log-t {
	display: flex;
    justify-content: center;
}

#clinica-iniciar {
	border: 1px solid #ccc;
    width: 160px;
    height: 40px;
    background: #2d2e4d;
    color: #fff;
    transition: 0.3s ease all;
    cursor:pointer;
}

#clinica-iniciar:hover {
	transition: 0.3s ease all;
	background-color: black;
	box-shadow: inset 0 0px 3px #fff, 0 0 11px #fff;
}

.t1_ti1 {
	color: var(--letra-1);
	font-size:18px;
	font-weight:bold;
	border-radius:10px 10px 0px 0px;
	text-transform: uppercase;
	margin: 0px;
	border: 0px;
	width: fit-content;
	position: relative;
  	padding:0px;
}

.t1_ti1::before {
    content: "";
    width: 3px;
    height: 100%;
    background: var(--letra-1);
    position: absolute;
    left: -9px;
}

.t1_ti2 {
    color: #3f51b5;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 0px;
    border: 0px;
    bottom: 15px;
    position: relative;
    padding: 0px;
}

.t1_ti3
{
	background-color:#E6E6CC;
	color:#808080;
	font-size:16px;
	font-weight:bold;
	text-transform: uppercase;
	text-align:center;
	border: 0px solid #dddddd;
}


.t1_lab
{
	color: #808080;
	font-family: "Lucida Grande", Verdana, sans-serif;
	font-size:12px;
	font-weight:bold;
    border-radius:0px;
	text-transform: uppercase;
	text-align:left;
    position: relative;
    width: 100%;
}

#login-mostrar {
    align-items: center;
    justify-content: center;
    padding: 0px;
    width: 30px;
    background: none;
    border: none;
    height: 30px;
    display: flex;
    position: absolute;
    right: 8px;
    top: 12%;
    cursor: pointer;
}

.control-label {
    font-family: "Lucida Grande", Verdana, sans-serif;
    font-weight: bold;
}

#index-contenedor {
    width: 100%;
    height: 100%;
    background: url(../imagenes/logo-fondo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

@media all and (max-width: 700px) {
    .fcon {
        width: 60%;
        height: fit-content;;
    }
}

.form-exito, .form-fallo, .form-custom {
    color: #fff;
    display: none;
    z-index: 99999999999;
    width: 30%;
    bottom: 0px;
    margin: 30px;
    position: fixed;
    right: 0px;
    font-size: 15px;
    border-radius: 5px;
    padding: 6px;
    text-align: center;
    font-weight: bold;
}

.form-exito {
    background-color: #009680;
}

.form-fallo {
    background-color: #ec3e31;
}

.inputs-vacios-efecto {
  animation: inputs-vacios-efecto 0.5s 2 alternate;
  background-color:#fff;
  color: #ccc;
}

.combo-resaltar, .input-resaltar, .contenedor-resaltar {
    animation: resaltar 0.8s infinite;
}

@keyframes resaltar {
    0% {
        box-shadow:  0px 0px 0px 0px rgb(13 110 253 / 25%);
    }
    100% {
        box-shadow:  0px 0px 10px 0px rgb(13 110 253 / 25%);
    }
}

@keyframes inputs-vacios-efecto {
  0% {
    color: #ccc;
    background-color:#fff;
  }
  50% {
    color:#fff;
    background-color:#F78181;
  }
  100% {
    color: #ccc;
    background-color:#fff;
  }
}


[data-efecto="tooltip-up"] { 
    opacity: 0;
    display: block;
    animation-name: tooltip-up;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    bottom: 0px;
}

@keyframes tooltip-up {
  0%   {bottom: 0px}
  100% {bottom: 15px; opacity: 1}
}

[data-efecto="tooltip-down"] { 
    opacity: 1;
    display: block;
    animation-name: tooltip-down;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    bottom: 0px;
}

@keyframes tooltip-down {
  0%   {bottom: 15px}
  100% {bottom: 0px; opacity: 0;}
}