﻿* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    margin: 0;
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: #020617;
    padding: 40px;
    border-radius: 18px;
    width: 340px;
    text-align: center;
}

/* SVG */
svg {
    width: 220px;
    margin-bottom: 20px;
}

/* Rosto */
#head {
    fill: #fde68a;
}

/* Olhos */
#pupil-left,
#pupil-right {
    fill: #020617;
}

/* Sobrancelhas */
#brow-left,
#brow-right {
    fill: #1f2937;
}

/* Boca */
#mouth {
    stroke: #1f2937;
}

/* Mãos (cor diferente + sombra) */
#hand-left,
#hand-right {
    fill: #f59e0b; /* mais escuro que o rosto */
    filter: drop-shadow(0px 3px 4px rgba(0,0,0,0.35));
}

/* Form */
.form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #fff;
    color: #000000;    
}

.form button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: #22c55e;
    color: #020617;
    font-weight: bold;
    font-size: 15px;
}


.password-wrapper {
    position: relative;
}

.eye-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    user-select: none;
    opacity: 0.7;
}

    .eye-toggle:hover {
        opacity: 1;
    }

    .eye-toggle i {
        transition: transform 0.2s ease;
    }

    .eye-toggle:hover i {
        transform: scale(1.15);
    }
