body {
    background: radial-gradient(circle at 50% 20%, #2d0a18 0%, #1a1a2e 60%, #000 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}
.container {
    max-width: 440px;
    margin: 36px auto;
    background: rgba(40, 10, 30, 0.92);
    border-radius: 28px;
    box-shadow: 0 8px 32px #ff174455, 0 2px 16px #0008;
    color: #fff;
    padding: 32px 24px 24px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-steps, .step {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    display: block;
}
.form-group {
    background: linear-gradient(90deg, #ff1744 0%, #7c4dff 100%);
    border-radius: 16px;
    padding: 18px 12px 12px 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px #7c4dff22, 0 1px 4px #0003;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
label,
.form-group label,
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
}
input, select, textarea {
    width: 100%;
    min-height: 48px;
    font-size: 1.13em;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1.5px solid #ff7fa7;
    background: #fff1;
    color: #fff;
    margin-bottom: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px #ff174422 inset, 0 1px 4px #fff1;
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
input:focus, select:focus, textarea:focus {
    border: 1.5px solid #fff;
    background: #ff174422;
    color: #fff;
    box-shadow: 0 2px 16px #ff174433, 0 0 0 2px #fff4;
}
input::placeholder, textarea::placeholder {
    color: #ffe0ec;
    opacity: 1;
    font-style: italic;
    text-align: center;
}
button[type="submit"] {
    width: 100%;
    background: linear-gradient(90deg, #ff1744 0%, #7c4dff 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 16px 0;
    font-size: 1.18rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 18px;
    box-shadow: 0 4px 16px #ff174455, 0 2px 8px #fff2;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}
button[type="submit"]:hover {
    background: linear-gradient(90deg, #7c4dff 0%, #ff1744 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 32px #ff174488, 0 2px 8px #fff4;
}
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
}
.logo-img {
    width: 160px;
    max-width: 90vw;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    background: #fff0;
    box-shadow: 0 0 0 8px #fff3, 0 0 40px 12px #ff1744cc, 0 2px 24px #000a;
    border: 4px solid #fff6;
    padding: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
input[type="checkbox"], input[type="radio"] {
    accent-color: #ff1744;
    transform: scale(1.05);
    box-shadow: 0 0 2px #ff1744cc;
    vertical-align: middle;
    transition: box-shadow 0.2s;
    margin: 0 auto 8px auto;
    display: block;
}
@media (max-width: 500px) {
    .container { padding: 12px 4px 16px 4px; }
    label { font-size: 1em; }
    button[type="submit"] { font-size: 1em; }
}