/* style.css */

/* Custom styles for the login form */
#custom-login-container {
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin-top: 50px;
    text-align: center;
}

#custom-login-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

#custom-login-form label {
    display: block;
    margin-bottom: 5px;
}

#custom-login-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

#custom-login-form input[type="submit"] {
    background-color: #152663;
    color: #fff;
    cursor: pointer;
}

#custom-login-form input[type="submit"]:hover {
    background-color: #0d1735;
}

#legend-text {
    font-weight: bold;
    font-family: 'Open Sans', sans-serif; /* Use a beautiful font (you can replace 'Open Sans' with the desired font name) */
    margin-top: 20px;
}

/* style.css */
/* Cuenta Conectada - Green background */
.notification-connected-container {
	background-color: #28a745;
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 5px;
	display: none;
}

.notification-connected {
	font-weight: bold;
	color: #fff;
}


/* Cuenta Desconectada - Red background */
.notification-disconnected-container {
	background-color: #dc3545;
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 5px;
	display: none;

}
.notification-disconnected {
	font-weight: bold;
	color: #fff;
}

