
/* Form Container */
.form-container {
    background-color: #05010da6;
    border-radius: 12px;
    padding: 30px;
    width: 450px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
    position: relative;
    text-align: center;
    margin: auto;
}

/* Blockchain Animation */
.blockchain-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00ffcc;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
    animation: pulsate 2s infinite;
}

.line {
    position: absolute;
    height: 2px;
    background: #00ffcc;
    box-shadow: 0 0 5px #00ffcc;
    animation: glow 2s infinite alternate;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glow {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}

/* Header Section */
.header-section h2 {
    color: #03A9F4;
    font-size: 26px;
    margin-bottom: 10px;
}

.description {
    font-size: 15px;
    margin-bottom: 20px;
    color: #a0a0a0;
}

/* Reward Section */
.reward-section .token-reward {
    color: #ffcc00;
    font-size: 15px;
    margin-bottom: 25px;
}

/* Form Section */
.form-section .input-group {
    margin-bottom: 15px;
    text-align: left;
    position: relative;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #cccccc;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: calc(100% - 0px);
    padding: 12px;
    border-radius: 10px !important;
    border: 1px solid #333;
    background-color: #333;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s, background-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    outline: none;
    border-color: #03A9F4;
    background-color: #151a28;
}

.submit-btn {
    background-color: #03A9F4;
    color: #151a28;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    opacity: 0.5;
    transition: opacity 0.2s ease;
    z-index: 1;
}

.submit-btn:hover {
    background-color: #009de6;
    transform: translateY(-2px);
}

.submit-btn:hover::before {
    opacity: 0;
}

.submit-btn:hover::after {
    right: 20px;
}

/* Download App Section */
.download-app {
    margin: 20px 0;
    font-size: 14px;
}

.app-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.app-icon {
    width: 130px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.app-icon:hover {
    transform: scale(1.1);
}

/* Security Note */
.security-note {
    font-size: 12px;
    color: #999999;
    margin-top: 20px;
}

.welcomeForm{
    max-width: 450px;
    margin: auto;
}