﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
}

.left-side {
    flex: 1;
    background: url('../images/imagen_login.jpeg') no-repeat center center;
    background-size: cover;
}

.right-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.login-container {
    width: 100%;
    max-width: 550px;
    padding: 2rem;
    text-align: center;
}

.logo {
    margin-bottom: 1.5rem;
}

    .logo img {
        max-width: 100%;
        height: auto;
    }

h2 {
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: #555;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

    .options a {
        text-decoration: none;
        color: #007bff;
    }

button {
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

    button:hover {
        background-color: #0056b3;
    }
