@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #eaf2fd 0%, #f0f2f5 50%, #dbe8fa 100%);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* --- CONTENEDOR --- */
.container-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
}

/* --- SECCIÓN IMAGEN --- */
.login-img {
    background: linear-gradient(135deg, #f8fbff 0%, #eaf2fd 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.login-img img {
    max-width: 90%;
    height: auto;
}

/* --- FORMULARIO --- */
.login-auth {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-auth h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c529e;
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-auth p {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

/* --- INPUTS --- */
.group-control {
    margin-bottom: 1.5rem;
    position: relative;
}

.group-control label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.group-control .control {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.group-control .control:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.group-control i {
    position: absolute;
    right: 12px;
    top: 45px;
    color: #888;
}

/* --- BOTONES --- */
.btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-access {
    background-color: #1a73e8;
    color: #fff;
    font-weight: 500;
}

.btn-access:hover {
    background-color: #2c529e;
    box-shadow: 0 6px 12px rgba(26, 115, 232, 0.25);
}

/* --- ALERTAS --- */
.alert {
    border-radius: 6px;
    margin-bottom: 1rem;
}
