/* ----------------------------------------
   Estilos para pantalla de login - ViviStay
   Colores base: Turquesa (#40E0D0), Rosa (#FFB6C1)
---------------------------------------- */

:root {
    --turquesa: #40E0D0;
    --rosa: #FFB6C1;
    --gris: #909090;
}

* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.15), rgba(255, 182, 193, 0.15));
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 850px;
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
}

.login-left {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, var(--turquesa), var(--rosa));
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login-left img {
    width: 120px;
    margin-bottom: 20px;
}

.login-left h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.login-left p {
    font-size: 16px;
    opacity: 0.9;
}

.login-right {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: #fff;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: var(--turquesa);
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.error {
    background: #ffe5e5;
    color: #d10000;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.btn-login {
    width: 100%;
    background: var(--turquesa);
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-login:hover {
    background: #36bdbd;
}
