@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background: linear-gradient(135deg, #FFD166, #52B788);
}

.login-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-login {
    text-align: center;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.descripcion {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.contenedor-login h2 {
    margin-bottom: 20px;
    color: #444;
}

.contenedor-login input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.contenedor-login input:focus {
    border-color: #52B788;
    outline: none;
}

.contenedor-login button {
    margin: 20px 0px;
    background-color: #FF914D;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
}

.contenedor-login button:hover {
    background-color: #e67e3e;
}

.texto-registro {
    margin-top: 15px;
}

.texto-registro a {
    color: #52B788;
    text-decoration: none;
}

.error {
    color: red;
    font-size: 13px;
    margin-top: 10px;
}