body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #181818;
}
.beta-signup-wrapper {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}
.beta-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 18px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(8,192,118,0.12);
    background: #181818;
    padding: 10px;
}
.beta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #08c076;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 0.01em;
}
.beta-desc {
    color: #b3b3b3;
    font-size: 1.08rem;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
}
.beta-signup-form {
    width: 100%;
    max-width: 370px;
    background: #181818;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 1.5px 0 #08c076;
    padding: 32px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
    animation: fadeInUp 1.1s;
}
.beta-signup-form label {
    display: block;
    margin-bottom: 7px;
    color: #08c076;
    font-weight: 600;
    font-size: 1.04rem;
    text-align: left;
    width: 100%;
}
.beta-signup-form .input-group {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}
.beta-signup-form input[type="email"],
.beta-signup-form input[type="tel"] {
    width: 100%;
    padding: 15px 16px;
    border-radius: 10px;
    border: 2px solid #08c076;
    background: linear-gradient(135deg, #181818 80%, #0ae885 100%);
    color: #fff;
    font-size: 1.08rem;
    font-weight: 500;
    outline: none;
    box-shadow: 0 2px 12px rgba(8,192,118,0.10);
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}
.beta-signup-form input[type="email"]:focus,
.beta-signup-form input[type="tel"]:focus {
    border: 2px solid #069a5d;
    background: linear-gradient(135deg, #181818 60%, #0ae885 100%);
    box-shadow: 0 4px 24px rgba(8,192,118,0.18);
}
.beta-signup-form button[type="submit"] {
    width: 100%;
    justify-content: center;
    font-size: 1.13rem;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 12px rgba(8,192,118,0.10);
    background: #08c076;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 0;
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.beta-signup-form button[type="submit"]:hover {
    background: #069a5d;
    box-shadow: 0 6px 24px rgba(8,192,118,0.18);
}
#beta-signup-message {
    margin-top: 18px;
    color: #08c076;
    display: none;
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}
@media (max-width: 600px) {
    .beta-signup-form {
        padding: 18px 4vw 14px 4vw;
        max-width: 98vw;
    }
    .beta-title {
        font-size: 1.4rem;
    }
    .beta-logo {
        width: 60px;
        height: 60px;
    }
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.22;
    pointer-events: none;
    background: url('./logos/icon-dark-3D.png') center center/cover no-repeat;
    filter: drop-shadow(0 0 32px #08c07688) blur(1px) brightness(1.1);
    animation: portal-spin 3s linear infinite;
    box-shadow: 0 0 32px 8px #08c07644, 0 0 64px 16px #0ae88533;
}
@keyframes portal-spin {
    0% { transform: rotate(0deg) scale(1);}
    100% { transform: rotate(360deg) scale(1);}
}
#phone-check {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #08c076;
    display: none;
}
