body {
    font-family: 'Manrope', sans-serif;
    color: #222;
    font-size: 18px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#gradient-background {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(45deg, #a1c4fd, #c2e9fb);
    background-size: 400% 400%;
    animation: move-gradient 30s ease infinite;
}

@keyframes move-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.signup-container {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.signup-header {
    margin-bottom: 30px;
}

.logo-container {
    text-align: center;
    text-decoration: none;
}

.modulynk-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 4rem; /* Increased font size */
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #764ba2, #3b82f6);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.signup-step {
    display: none;
}

.signup-step.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    background-color: rgba(255, 255, 255, 0.5);
    color: #222;
}

button {
    background-color: #23a6d5;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    font-weight: 700;
}

button:hover {
    background-color: #23d5ab;
}

.prev-step-btn {
    background-color: #6c757d;
    margin-right: 10px;
}

.prev-step-btn:hover {
    background-color: #5a6268;
}

.plan-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Increased gap */
    justify-content: center;
    margin-top: 30px; /* Increased margin */
    margin-bottom: 30px; /* Increased margin */
}

.plan-card {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px; /* Increased border-radius */
    padding: 25px; /* Increased padding */
    width: 200px; /* Increased width */
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Enhanced shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.plan-card:before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover:before {
    opacity: 1;
}

.plan-card.popular {
    border-color: #23a6d5;
    transform: scale(1.05); /* Make popular plan slightly larger */
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: #23a6d5;
    color: white;
    padding: 5px 40px;
    font-size: 0.8em;
    font-weight: bold;
    transform: rotate(45deg);
    transform-origin: top right;
}

.plan-card h4 {
    color: #23a6d5;
    margin-top: 0;
    font-size: 1.5em; /* Increased font size */
}

.plan-card .price {
    font-size: 1.2em; /* Increased font size */
    font-weight: bold;
    margin-bottom: 20px; /* Increased margin */
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px; /* Increased margin */
}

.plan-card ul li {
    margin-bottom: 10px; /* Increased margin */
    font-size: 0.95em;
}

.plan-card .select-plan-btn {
    width: 100%;
    padding: 12px; /* Increased padding */
    margin-top: 0;
}

.free-trial-text {
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #555;
}

.signup-container.step-2-active {
    max-width: 800px; /* Increased max-width for step 2 */
}

.footnote {
    margin-top: 20px;
    font-size: 0.8em;
    color: #777;
}

.comparison-table-container {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px; /* Add some space below the table */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    margin-top: 20px; /* Reduced margin-top */
    border-collapse: collapse;
    text-align: center;
}

.comparison-table th, .comparison-table td {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Added full borders */
}

.comparison-table th {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: bold;
    color: #222;
}

.comparison-table .checkmark {
    color: #23d5ab;
    font-weight: bold;
    font-size: 1.2em;
}

.signup-footer {
    margin-top: 30px;
    font-size: 0.8em;
    color: #555;
}

.social-signup {
    margin-top: 15px; /* Reduced space */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

.social-signup p {
    margin-bottom: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    color: #222;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: #f4f7f6;
}

.social-btn img {
    margin-right: 10px;
}
