/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Fundo principal rosa claro */
body {
    background: #ffe6f0; /* Rosa clarinho */
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Container do formulário */
.bg-img {
    background-color: #EB008B; /* Branco puro para destacar o conteúdo */
    border: 2px solid #eb008b; /* Borda rosa principal */
    border-radius: 16px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 25px rgba(235, 0, 139, 0.2); /* Rosa em sombra */
}

/* Logo centralizada */
.logo {
    max-width: 100px;
    display: block;
    margin: 0 auto 20px;
}

/* Título */
h2 {
    text-align: center;
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Mensagem de erro */
.erro {
    background-color: #ffd6e8;
    color: #b0004b;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
}

/* Campos */
input, select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fff0f6; /* Rosa bem claro */
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}

input:focus, select:focus {
    border-color: #eb008b;
    box-shadow: 0 0 5px rgba(235, 0, 139, 0.3);
    outline: none;
}

/* Botão de login */
button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background-color: #61103f;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #1d151a;
}

/* Links abaixo do formulário */
p {
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    margin-top: 15px;
}

p a {
    color: #fff8f8;
    text-decoration: underline;
    font-weight: 500;
}

p a:hover {
    color: #8b2260;
}

/* Responsivo */
@media (max-width: 480px) {
    .bg-img {
        padding: 30px 20px;
    }

    h2 {
        font-size: 22px;
    }

    input, select, button {
        font-size: 14px;
    }
}
