/* Fondo */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tarjeta */
.login-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Logo */
.login-logo {
    width: 120px;
    margin-bottom: 20px;
}

/* Título */
.login-card h2 {
    margin-bottom: 5px;
    color: #1e293b;
}

.login-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Inputs */
.tml input[type="text"],
.tml input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

/* Botón */
.tml input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

/* Hover */
.tml input[type="submit"]:hover {
    background: #4338ca;
}

/* Checkbox */
.tml input[type="checkbox"] {
    margin-right: 5px;
}

/* Links */
.tml a {
    font-size: 13px;
    color: #4f46e5;
}

/* Quitar estilos feos del tema */
.entry-title {
    display: none;
}

.tml-lostpassword-link{
	list-style: none;
	text-decoration: none;
	color: white;
}

.tml-lostpassword-link a{
	list-style: none;
	text-decoration: none;
	color: #0f172a;
}

.tml-lostpassword-link a:hover{
	font-size: 14px;
}

.tml .tml-error,
.tml .tml-message {
    display: none !important;
}