/* estilos_registro.css - Estilos mejorados para login y registro */
body.login-body, body.register-body {
    background: linear-gradient(135deg, #f8ffae 0%, #43c6ac 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
}

.login-container, .register-container {
    background: rgba(255,255,255,0.95);
    padding: 2.7rem 2.2rem;
    border-radius: 1.3rem;
    box-shadow: 0 10px 40px 0 rgba(67, 198, 172, 0.18);
    width: 100%;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid #e0f7fa;
    transition: box-shadow 0.3s;
}

.login-container:hover, .register-container:hover {
    box-shadow: 0 16px 48px 0 rgba(67, 198, 172, 0.25);
}

.login-container h2, .register-container h2 {
    margin-bottom: 1.7rem;
    color: #2d3a4b;
    letter-spacing: 1px;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 0.35rem;
    color: #2d3a4b;
    font-weight: 600;
    letter-spacing: 0.5px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    padding: 0.75rem;
    margin-bottom: 1.15rem;
    border: 1.5px solid #b2dfdb;
    border-radius: 0.55rem;
    font-size: 1.05rem;
    outline: none;
    background: #f9f9f9;
    transition: border 0.2s, box-shadow 0.2s;
}

input:focus {
    border-color: #43c6ac;
    box-shadow: 0 0 0 2px #b2f7ef44;
}

button[type="submit"] {
    background: linear-gradient(90deg, #43c6ac 0%, #191654 100%);
    color: #fff;
    border: none;
    padding: 0.85rem;
    border-radius: 0.55rem;
    font-size: 1.13rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 0.6rem;
    box-shadow: 0 2px 8px 0 rgba(67, 198, 172, 0.10);
}

button[type="submit"]:hover {
    background: linear-gradient(90deg, #191654 0%, #43c6ac 100%);
    transform: translateY(-2px) scale(1.03);
}

p {
    margin-top: 0.8rem;
    color: #2d3a4b;
    font-size: 1rem;
}

a {
    color: #43c6ac;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
a:hover {
    color: #191654;
    text-decoration: underline;
}
