/*
Theme Name: Jimmy Page Theme by deepworks
Theme URI: http://deepworks.com.ar
Author: Deepworks team.
Author URI: http://deepworks.com.ar/
Description: Template Bootstrap desarrollado a medida.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: Responsive, custom pages.
Text Domain: dwmedia 

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/



/* --- Estilos Generales para el Contenedor de la Página de Login --- */
.page-login-unique {
    /* Aquí definimos el fondo y centrado general del Login */
    background-color: #f8f9fa; /* Color de fondo ligero */
    font-family: Arial, sans-serif;
    min-height: 100vh; /* Ocupa todo el alto de la vista */
    display: flex; 
    flex-direction: column;
}

/* --- Centrado del Contenedor del Formulario (Aislado) --- */
.page-login-unique .row.justify-content-md-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; 
}

/* --- Contenedor Principal del Formulario (Aislado) --- */
.page-login-unique .the-content {
    background-color: #ffffff; /* Fondo blanco para el recuadro del formulario */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Sombra suave */
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 450px; 
    width: 100%; 
    margin-left: auto;
    margin-right: auto;
}

/* --- Título Principal (Aislado) --- */
.page-login-unique .section-title {
    color: #21753b; 
    font-size: 2.5rem; 
    margin-bottom: 10px;
}

/* --- Estilos de Inputs y Botones (Aislado) --- */

.page-login-unique .user-registration-form-row {
    margin-bottom: 15px;
}

.page-login-unique .user-registration-Input,
.page-login-unique input[type="text"],
.page-login-unique input[type="password"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; 
    font-size: 16px;
}

/* Botón de Login */
.page-login-unique .ur-submit-button {
    background-color: #007bff; 
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%; 
    transition: background-color 0.3s ease;
}

.page-login-unique .ur-submit-button:hover {
    background-color: #0056b3;
}

/* Recordarme y Olvidé mi Contraseña */
.page-login-unique .user-registration-before-login-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap; 
}

.page-login-unique .lost_password a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
}

.page-login-unique .user-registration-register a {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #6c757d;
}

/* --- Media Queries (Aislado) --- */
@media (max-width: 576px) {
    .page-login-unique .section-title {
        font-size: 2rem;
    }

    .page-login-unique .the-content {
        padding: 20px;
        box-shadow: none; 
        border: none;
    }
}