.ce-container {
    max-width: 550px;
    margin: 0 auto;
}

.ce-formulario {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.ce-titulo {
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    font-size: 28px;
}

.ce-campo {
    margin-bottom: 20px;
}

.ce-campo label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.ce-campo input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

.ce-botao {
    width: 100%;
    border: none;
    background: #ef3f46;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: .2s;
}

.ce-botao:hover {
    background: #d72d35;
    color: #ffffff;
}

.ce-link-botao {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 15px;
}

.ce-alerta {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.ce-sucesso {
    background: #15803d;
}

.ce-erro {
    background: #b91c1c;
}

.ce-aviso {
    background: #d97706;
}

.ce-resumo {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.ce-item {
    background: #f5f5f5;
    padding: 14px;
    border-radius: 8px;
}

.ce-item code {
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
}

.ce-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ce-modal-box {
    background: #ffffff;
    color: #111111;
    max-width: 420px;
    width: 100%;
    padding: 35px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.ce-modal-icone {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #15803d;
    color: #ffffff;
    font-size: 42px;
    line-height: 72px;
    font-weight: bold;
}

.ce-modal-box h2 {
    margin: 0 0 10px;
    font-size: 26px;
}

.ce-modal-box p {
    margin: 0 0 24px;
    font-size: 16px;
}

.ce-modal-box button {
    background: #ef3f46;
    color: #ffffff;
    border: 0;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}
