/* /assets/css/main.css */

/* --- ESTILOS PÁGINA DE INICIO (INDEX) --- */
.content-wrapper {
    text-align: center;
    max-width: 900px;
    width: 100%;
}
.content-wrapper h1 {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
}
.separator {
    border: none;
    height: 2px;
    background-color: #bbb;
    margin: 30px auto;
    width: 80%;
    max-width: 900px;
}
.image-container {
    margin-top: 50px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    display: inline-block;
}
.image-container img {
    max-width: 100%;
    height: auto;
}

/* --- ESTILOS PÁGINA DE LOGIN --- */
.login-container {
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
}
.login-container h1 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}
.login-form .form-group {
    margin-bottom: 25px;
    text-align: left;
}
.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
    font-size: 0.9rem;
}
.login-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;  
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.login-form input:focus {
    outline: none;
    border-color: #343a40;
    box-shadow: 0 0 5px rgba(52, 58, 64, 0.2);
}
.btn-login {
    width: 100%;
    padding: 15px;
    background-color: #343a40;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}
.btn-login:hover {
    background-color: #495057;
    transform: translateY(-2px);
}

