* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #5b2be0, #8f5bff);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: #ffffff;
    width: 400px;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* LOGO */
.logo {
    margin-bottom: 20px;
}

.icon {
    width: 80px;
    height: 80px;
    margin: auto;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* TEXTOS */
.logo h2 {
    color: #5b2be0;
    font-weight: 600;
    margin-top: 10px;
}

h3 {
    margin-bottom: 5px;
    font-weight: 600;
}

p {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}

/* INPUTS */
.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    font-size: 13px;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #5b2be0;
}

/* RECORDAR */
.remember {
    text-align: left;
    font-size: 13px;
    margin-bottom: 20px;
}

/* BOTÓN */
button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #5b2be0;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #4722b6;
}