/*!
 * Sistema de Gestion Interna
 * Cesfam Codegua
 * Copyright 2023 Municipalidad de Codegua.
 */

/* login formulario */
body {
	background-image: url("../img/logo.png");
	background-position: top;
	background-repeat: no-repeat;
	position: relative;
    display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	padding: 0;
	line-height: 3.4;
	z-index: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.cuadro {
	top: 15%;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	width: 350px;
	height: 380px;
    content: '';
    background:#2D4A68;
    opacity: .9;
	z-index: -1; 
	border-radius: 40px;
	position: fixed;
}

h1 {
	color: #fff;
	font-weight: 80;
	top: 50px; 
}

.form-control {
	position:relative;
	height: 40px;
	color: white !important;
	border: 1px solid transparent;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 40px;
	padding-left: 20px;
	padding-right: 20px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s; 
}
@media (prefers-reduced-motion: reduce) {
    .form-control {
		-webkit-transition: none;
		-o-transition: none;
		transition: none; } 
}
.form-control::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: rgba(255, 255, 255, 0.8) !important; }
.form-control::-moz-placeholder {
	/* Firefox 19+ */
	color: rgba(255, 255, 255, 0.8) !important; }
.form-control:-ms-input-placeholder {
	/* IE 10+ */
	color: rgba(255, 255, 255, 0.8) !important; }
.form-control:-moz-placeholder {
	/* Firefox 18- */
	color: rgba(255, 255, 255, 0.8) !important; }
.form-control:hover, .form-control:focus {
	background: transparent;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: rgba(255, 255, 255, 0.4); }
.form-control:focus {
    border-color: rgba(255, 255, 255, 0.4); }


.btn {
	cursor: pointer;
	border-radius: 40px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	font-size: 15px;
	text-transform: uppercase; 
}

.btn:hover, .btn:active, .btn:focus {
    background:#20738C !important;
    border: 1px solid #fbceb5 !important;
}

.field-icon {
	position: absolute;

	top: 28px;
	right: 90px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.9); 
}
