/* public/assets/css/login.css */
:root {
    --wanda-pink: #db2777;
    --wanda-dark: #831843;
    --wanda-light: #fce7f3;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body {
    background: linear-gradient(135deg, var(--wanda-light) 0%, #ffffff 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: white;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(219, 39, 119, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
}

.login-container:hover {
    transform: translateY(-5px);
}

.brand-logo {
    background: var(--wanda-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--wanda-pink);
    font-size: 2rem;
}

h2 { color: #333; margin-bottom: 0.5rem; font-weight: 600; }
p.subtitle { color: #666; font-size: 0.9rem; margin-bottom: 2rem; }

.input-group {
    margin-bottom: 1.2rem;
    position: relative;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    transition: 0.3s;
}

input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: var(--wanda-pink);
}

input:focus + i {
    color: var(--wanda-pink);
}

button {
    width: 100%;
    padding: 14px;
    background: var(--wanda-pink);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.3);
}

button:hover {
    background: var(--wanda-dark);
    transform: scale(1.02);
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid #fca5a5;
    display: flex;
    align-items: center;
    gap: 10px;
}