:root {
    --primary: #4285f4;
    --primary-dark: #3367d6;
    --secondary: #fbbc05;
    --dark: #202124;
    --light: #f8f9fa;
    --gray: #5f6368;
    --light-gray: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Header Styles */
.cta-button2 {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button2:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 4.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Floating Animations */
.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Signup Form Section */
.signup-section {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.signup-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.signup-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.signup-header h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.signup-header p {
    color: var(--gray);
}

.signup-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group label.required::after {
    content: '*';
    color: var(--primary);
    margin-left: 0.3rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    width: 100%;
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
}

.terms-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.terms-group input {
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.terms-group label {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.terms-group label a {
    color: var(--primary);
    text-decoration: none;
}

.terms-group label a:hover {
    text-decoration: underline;
}

.submit-btn {
    grid-column: span 2;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray);
}

.login-link a {
    color: var(--primary);
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.compulsory {
    display: none;
}

/* Communication Options */
.comm-options {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.comm-option {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comm-option:hover {
    border-color: var(--primary);
}

.comm-option input {
    margin-right: 0.5rem;
}

.comm-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.comm-option i {
    margin-right: 0.5rem;
    color: var(--primary);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #4285f4 0%, #3367d6 100%);
    color: white;
    text-align: center;
}

.benefits-section h2 {
    color: inherit;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
    color: inherit;
}

.benefit-card p {
    opacity: 0.9;
    font-size: 0.9rem;
    color: inherit;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Mouse Effects */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: rgba(66, 133, 244, 0.3);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    z-index: 9999;
    transition: transform 0.1s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .signup-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .submit-btn {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .signup-container {
        padding: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}