/* --- 1. Layout de Pantalla Dividida (Se mantiene) --- */
.login-page {
    background-color: #f5f5f5;
    background-image: url('../images/auth/auth-light.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: stretch;
}

.login-page .container {
    max-width: 100% !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
}

.login-page .form-outer {
    background: #ffffff;
    width: 100%;
    max-width: 500px; /* Panel lateral */
    margin: 0 !important;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 10px 0 20px rgba(0,0,0,0.05);
    z-index: 10;
}

/* --- 2. Regresando a Inputs Estilo Material (Original) --- */
.form-group-material {
    position: relative;
    margin-bottom: 35px; /* Un poco más de espacio para la etiqueta flotante */
}

input.input-material {
    width: 100%;
    border: none;
    border-bottom: 1px solid #eee; /* Solo línea inferior */
    padding: 10px 0;
    color: #868e96;
    font-weight: 300;
    background: transparent;
    border-radius: 0; /* Quitamos el redondeado del diseño anterior */
}

input.input-material:focus {
    border-bottom-color: #7c5cc4; /* Color morado original */
    outline: none;
}

input.input-material ~ label {
    color: #aaa;
    position: absolute;
    top: 10px;
    left: 0;
    cursor: text;
    transition: all .2s;
    font-weight: 300;
}

/* Estado activo de la etiqueta (flotando arriba) */
input.input-material:focus ~ label,
input.input-material ~ label.active {
    font-size: 0.8em;
    top: -15px;
    color: #5cc473;
}

/* --- 3. Regresando a Botones Originales (Morados) --- */
.btn-primary {
    color: #fff;
    background-color: #5cc473; /* Morado original */
    border-color: #5cc473;
    padding: 12px;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #44a654;
    border-color: #44a654;
}

/* --- 4. Ajustes Finales --- */
.login-page .form-inner {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.login-page .logo {
    margin-bottom: 40px;
}

.login-page .copyrights {
    position: absolute;
    bottom: 20px;
    left: 40px;
    width: auto;
}

.btn-dark {
	color: color-yiq(#343a40);
	background-color: #343a40;
	border-color: #343a40
}

.btn-dark:hover {
	color: color-yiq(#23272b);
	background-color: #23272b;
	border-color: #1d2124
}

.btn-dark.focus,
.btn-dark:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
	box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}