:root {
    --rosa: #e91e8c;
    --rosa-esc: #c2156f;
    --texto: #2b2b2b;
    --cinza: #666;
    --bg: #fff0f7;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: linear-gradient(160deg, var(--bg), #ffe0ee);
    color: var(--texto);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 24px 16px;
}

.card {
    background: #fff;
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(233, 30, 140, 0.18);
    padding: 32px 26px;
    text-align: center;
}

.emoji { font-size: 54px; line-height: 1; margin-bottom: 8px; }

h1 {
    font-size: 24px;
    margin: 6px 0 12px;
    color: var(--rosa-esc);
    line-height: 1.25;
}

p { color: var(--cinza); line-height: 1.5; margin: 8px 0; }
.sub { font-size: 16px; color: var(--texto); }
.dica {
    margin-top: 18px;
    font-size: 13px;
    background: var(--bg);
    padding: 10px 12px;
    border-radius: 12px;
}

form { text-align: left; margin-top: 20px; }

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 14px;
}

input[type="text"], input[type="tel"] {
    width: 100%;
    margin-top: 6px;
    padding: 13px 14px;
    border: 1.5px solid #e6c6da;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: border-color .15s;
}
input:focus { border-color: var(--rosa); }

label.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 400;
    font-size: 13px;
    color: var(--cinza);
}
label.check input { margin-top: 3px; }
label.check span strong { color: var(--rosa-esc); }

button {
    width: 100%;
    margin-top: 6px;
    padding: 15px;
    background: var(--rosa);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, transform .05s;
}
button:hover { background: var(--rosa-esc); }
button:active { transform: scale(.99); }

.erro {
    background: #ffe3e3;
    color: #b71c1c;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: left;
}
