/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor principal */
.login-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.login-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

/* Lado izquierdo - Imagen */
.login-image {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Lado derecho - Formulario */
.login-form {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    width: 220px;
    height: auto;
    margin-bottom: 20px;
}

.form-header h1 {
    color: #00adee;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Formulario */
.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00adee;
    box-shadow: 0 0 0 3px rgba(0, 173, 238, 0.1);
}

.btn-primary {
    background: #00adee;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 60, 114, 0.3);
}

.form-footer {
    text-align: center;
    margin-top: 10px;
}

.forgot-password {
    color: #00adee;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #0088cc;
    text-decoration: underline;
}

.welcome-message {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
}

.welcome-message p {
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .login-box {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .login-image {
        display: none;
    }
    
    .login-form {
        padding: 40px 30px;
    }
    
    .form-header h1 {
        font-size: 24px;
    }
}
