/* Container styles */
.signup-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.signup-intro {
    text-align: left;
    margin-bottom: 3rem;
}

.signup-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: normal;
}

/* Steps container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

/* Individual step styling */
.step {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Number styling (removed circle) */
.step-number {
    color: #4285f4;
    font-size: 1rem;
    font-weight: normal;
    min-width: 24px;  /* Ensures consistent spacing */
}

/* Step text styling */
.step-text {
    font-size: 1.05rem;
    color: #333;
    font-weight: normal;
    font-family: sans-serif;
}

.form-container {
    margin-top: 3rem;
    max-width: 800px;  /* or whatever maximum width you prefer */
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .form-container iframe {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .form-container iframe {
        height: 500px;
    }
}