@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f2f4f7;
    min-height: 100vh;
    transition: background-color 0.3s ease;
    color: #222;
}

.page-wrapper, .content-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    width: 100%;
}

.logo {
    max-width: 140px;
    height: auto;
}

form {
    width: 100%;
}

form label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

form input {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fefefe;
    color: #333 !important;
    transition: border-color 0.2s;
}

form input:focus {
    border-color: #25d366;
    outline: none;
}

form input::placeholder {
    color: #aaa;
}

button[type="submit"] {
    width: 100%;
    background-color: #25d366;
    color: white;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

button[type="submit"]:hover {
    background-color: #1ebe5d;
}

.help-box {
    margin-top: 30px;
    text-align: center;
}

.help-box a {
    text-decoration: none;
    color: #1b8c56;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.help-box a:hover {
    color: #147c44;
}

/* Outras regras personalizadas do seu layout claro podem ir aqui */
/* ... */

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
    }
    form input,
    button,
    #qrText {
        font-size: 15px;
        padding: 12px;
    }
}
