body.cosmic-bg {
    min-height: 100vh;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    background-image: url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
}
.form-container {
    background: rgba(30, 34, 54, 0.95);
    border-radius: 32px;
    box-shadow: 0 0 40px 10px #00ffe7, 0 0 0 2px #fff3;
    padding: 40px 32px 32px 32px;
    max-width: 400px;
    width: 100%;
    margin: 40px auto;
    text-align: center;
}
.bubble-title {
    font-size: 2.5em;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-shadow: 0 0 16px #00ffe7, 0 0 32px #0ff, 0 0 2px #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    border-radius: 32px;
    background: linear-gradient(90deg, #00ffe7 0%, #6a82fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.neon-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.bubble-input {
    padding: 16px 18px;
    border-radius: 24px;
    border: none;
    font-size: 1.2em;
    background: rgba(255,255,255,0.08);
    color: #fff;
    box-shadow: 0 0 12px #00ffe7 inset;
    outline: none;
    margin-bottom: 8px;
    transition: box-shadow 0.2s;
}
.bubble-input:focus {
    box-shadow: 0 0 24px #00ffe7, 0 0 2px #fff;
}
.bubble-btn {
    padding: 16px 0;
    border-radius: 32px;
    border: none;
    font-size: 1.3em;
    font-weight: bold;
    background: linear-gradient(90deg, #00ffe7 0%, #6a82fb 100%);
    color: #fff;
    box-shadow: 0 0 24px #00ffe7, 0 0 2px #fff;
    cursor: pointer;
    margin-top: 8px;
    letter-spacing: 1px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    text-shadow: 0 0 8px #0ff, 0 0 2px #fff;
}
.bubble-btn:hover {
    background: linear-gradient(90deg, #6a82fb 0%, #00ffe7 100%);
    box-shadow: 0 0 40px #00ffe7, 0 0 2px #fff;
    transform: scale(1.04);
}
.form-footer {
    margin-top: 18px;
    color: #b2f7ef;
    font-size: 1em;
}
.form-footer a {
    color: #00ffe7;
    text-decoration: underline;
    font-weight: bold;
}
.error-msg {
    background: rgba(255,0,80,0.15);
    color: #ff4b7d;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 12px;
    font-weight: bold;
    box-shadow: 0 0 8px #ff4b7d44;
}
.success-msg {
    background: rgba(0,255,231,0.12);
    color: #00ffe7;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 12px;
    font-weight: bold;
    box-shadow: 0 0 8px #00ffe744;
}
.dbi-link-block {
    margin: 24px 0 18px 0;
    color: #fff;
    font-size: 1.1em;
    text-align: left;
}
.dbi-link-input {
    width: 100%;
    padding: 12px 10px;
    border-radius: 18px;
    border: none;
    background: rgba(0,255,231,0.08);
    color: #00ffe7;
    font-size: 1.1em;
    margin-top: 8px;
    box-shadow: 0 0 8px #00ffe7 inset;
} 