

#crakeo-fullpage {
    background:#101480;
    min-height:100vh;
    display:flex;
    justify-content:center;
    color:white;
    padding:60px 20px;
}

#crakeo-form-wrapper {
    max-width: 100%;
    margin: auto;
    font-family: 'Poppins', sans-serif;
}
.crakeo-success {
    background:#038942;
    color:white;
    padding:25px;
    border-radius:12px;
    text-align:center;
    font-size:20px;
    margin-top:20px;
}
#crakeo-success-popup {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #038942;
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    z-index: 99999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    animation: crakeoFade 0.3s ease-out;
}

@keyframes crakeoFade {
    from { opacity:0; transform:translateX(-50%) translateY(-10px); }
    to { opacity:1; transform:translateX(-50%) translateY(0); }
}

.crakeo-error {
    background:#ff4d4d;
    color:white;
    padding:25px;
    border-radius:12px;
    text-align:center;
    font-size:20px;
    margin-top:20px;
}

.crakeo-logo {
    width:120px;
    margin-bottom:20px;
}

.crakeo-title {
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}

.crakeo-intro {
    font-size:18px;
    opacity:0.8;
    margin-bottom:40px;
}

.crakeo-question {
    margin-bottom:40px;
}

.crakeo-question label {
    font-weight:600;
    display:block;
    margin-bottom:15px;
}

.tally-options {
    display:flex;
    flex-direction:column;
    gap:12px;
}

.tally-option {
    padding:14px 18px;
    border-radius:12px;
    border:2px solid rgba(255,255,255,0.2);
    background:rgba(255,255,255,0.05);
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:12px;
    transition:.25s;
}

.tally-option:hover {
    border-color:#038942;
    background:rgba(3,137,66,0.25);
}

.tally-option.selected {
    background:#038942;
    border-color:#038942;
}

#crakeo-form button {
    margin-top:20px;
    background:#038942;
    color:white;
    padding:16px 20px;
    width:100%;
    border:none;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

#crakeo-form button:hover {
    background:#02a74f;
}
