﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.login-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: flex-end;
    background: transparent;
}

.login-box {
    width: 40%;
    height: 100%;
    background: white;
    box-shadow: -5px 0px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
}

.panel-derecha {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

    .logo-container img {
        width: 70px;
    }

h1 {
    text-align: center;
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 35px;
    font-family: sans-serif;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #333;
}

.input-box {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.botonLogin {
    width: 100%;
    padding: 14px;
    background: #6c63ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
