* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    background: #fff;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* --- Lado Izquierdo --- */
.left-side {
    width: 55%;
}

.left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Lado Derecho --- */
.right-side {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 75%;
    max-width: 350px;
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Inputs */
input {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    background: #fafafa;
}

/* Opciones */
.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: 10px 0;
}

.options a {
    text-decoration: none;
    color: #888;
}

/* Botón */
button {
    width: 100%;
    padding: 12px;
    background: #5f6af5;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.or {
    text-align: center;
    margin: 15px 0 10px;
    color: #777;
    font-size: 14px;
}

/* Redes Sociales */
.social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    background: #3b5998; /* azul FB */
    font-weight: bold;
}

.social a.tw {
    background: #1da1f2; /* azul Twitter */
}
.navbar-brand img {
    display: block;
    margin: 0 auto;
}

.navbar {
    padding: 15px 0;
}
