@import url('https://fonts.googleapis.com/css?family=Nunito');
@import url('https://fonts.googleapis.com/css?family=Poiret+One');

body, html {
	height: 100%;
	background-repeat: no-repeat;    /*background-image: linear-gradient(rgb(12, 97, 33),rgb(104, 145, 162));*/
	position: relative;
	color: white;
}
#login-box .logo .logo-caption,
#login-box .logo .tweak,
#login-box .controls input,
#login-box .controls input:focus,
#login-box button.btn-custom,
#login-box button.btn-custom:hover,
.footer .text-muted {
	color: white;
}
#login-box {
	position: relative;
	top: 60px;
	margin: 0 auto;
	border: transparent;
	background: rgba(48, 46, 45, 1);
	border-radius: 10px;
	z-index: 9999;
}
#login-box .logo .logo-caption {
	font-family: 'Poiret One', cursive;
	color: white;
	text-align: center;
	margin-bottom: 0px;
}
#login-box .logo .tweak {
	color: #ff5252;
}
#login-box .controls {
	padding-top: 0px;
}
#login-box .controls input {
	background: rgb(98, 96, 96);
	border: 0px;
	color: white;
	font-family: 'Nunito', sans-serif;
}
#login-box .controls input:focus {
	box-shadow: none;
}
#login-box .controls input:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}
#login-box .controls input:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}
#login-box button.btn-custom {
	border-radius: 2px;
	margin-top: 25px;
	background:linear-gradient(to right,#3F3068,#3F3068); /* PRIMARIO: 3F3068 // SECUNDARIO: 9696B5 */
	border-color: rgba(48, 46, 45, 1);
	color: white;
	font-family: 'Nunito', sans-serif;
}
#login-box button.btn-custom2 {
	border-radius: 2px;
	margin-top: 25px;
	background:linear-gradient(to right,#9696B5,#9696B5); /* PRIMARIO: 3F3068 // SECUNDARIO: 9696B5 */
	border-color: rgba(48, 46, 45, 1);
	color: white;
	font-family: 'Nunito', sans-serif;
}
#login-box button.btn-custom:hover{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	background: rgba(48, 46, 45, 1);
	border-color: #9696B5;
}
#login-box button.btn-custom2:hover{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	background: rgba(48, 46, 45, 1);
	border-color: #9696B5;
}
#particles-js{
  	width: 100%;
  	height: 100%;
  	position: fixed;
  	top: 0px;
  	left: 0px;
  	z-index:0;
}
/* Estilos responsivos para el logo */
.auth-logo img {
    max-width: 350px; /* Mantiene un tamaño máximo en pantallas grandes */
    width: 20vw; /* Escala proporcionalmente en pantallas más pequeñas */
    height: auto;
}

@media (max-width: 767.98px) {
    .auth-logo img {
        width: 60vw; /* Se escala aún más en dispositivos pequeños */
        max-width: 200px; /* Define un máximo en pantallas pequeñas */
    }
}

/* Estilos responsivos para el div.controls */
.controls {
    width: 100%;
    padding: 1rem; /* Define un padding estándar */
}

@media (max-width: 767.98px) {
    #login-box {
        width: 100%;
        padding: 1rem;
    }

    .controls input, .controls button {
        font-size: 0.9rem;
        padding: 0.4rem;
    }
}
/*# sourceMappingURL=custom.min.css.map */