@CHARSET "UTF-8";
/*
over-ride "Weak" message, show font in dark grey
*/

.progress-bar {
    color: #333;
}

/*
Reference:
http://www.bootstrapzen.com/item/135/simple-login-form-logo/
*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

.form-control {
    /* position: relative; */
    font-size: 16px;
    height: auto;
    padding: 10px;
    /*@include box-sizing(border-box);*/
    /*&:focus {*/
    /*     z-index: 2;*/
    /*}*/
}

body {
    display: flex;
    padding: 0;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    background-color: #d0effa; /* Celeste */
    background-image: url('../images/logo_kalmed_A.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 80%; /* La imagen ocupa el 80% del tamaño de la pantalla */
}


.login-card {
	/*margin: auto;*/
	width: 800px;
	min-height: 400px;
	/*display: flex;*/
	align-items: stretch;
	border-radius: 15px;
	overflow: hidden;
	/*box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px,
		rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
	border: 1px solid rgba( 255, 255, 255, 0.18 );*/
}

@media only screen and (max-width: 468px) {
    .login-card{
        width: 420px;
    }
}

@media only screen and (max-width: 380px) {
    .login-card{
        width: 350px;
    }
}

.login-glass {
	flex: 0 0 40%;
	background-color: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	/* svg {
		width: 30%;
		fill: white;
	} */
}

.login-form-container {
	/*flex: 0 0 60%;*/
	display: flex;
	flex-direction: column;
	padding: 2rem;
    background: rgba(255,255,255,0.5);
}

.form-group {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: 1.75rem;
}

label {
    position: absolute;
    font-weight: bold;
    /*color: darken(#d1d5da, 50%);*/
    font-size: 16px;
    top: -0.75px;
    left: 0.75rem;
    transform: translateY(-50%);
    background-color: white;
    padding: 0 0.25rem;
}

input {
    flex: 1 0 auto;
    padding: 0.875rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5da;
    transition: border-color 0.2s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 0, rgba(0, 0, 0, 0.06) 0 1px 2px 0;
    
}

input:hover{
    border-color: #439cf0;
}
/* input:focus {
    outline: 0;
    border-color: #439cf0;
} */

.login-title {
    /* font-size: 25px; */
    font-weight: bold;
    text-align: center;
    padding: 0 0 2rem;
    color: rgb(66, 65, 65);
}

.login-form {
    position: relative;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    border-radius: 10px;
    text-align: center;
}

form[role=login] {
    color: #8f8e8e;
    background: #f2f2f2;
    padding: 26px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}
form[role=login] img {
    display: block;
    margin: 0 auto;
    margin-bottom: 35px;
}
form[role=login] input,
form[role=login] button {
    font-size: 18px;
    /*margin: 16px 0;*/
}
form[role=login] > div {
    text-align: center;
}

.form-links {
    text-align: center;
    margin-top: 1em;
    margin-bottom: 50px;
}
.form-links a {
    color: rgb(51, 51, 51);
}

.panel-heading
{
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.blink_me {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}
