@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #FF0080 0%, #FF8C00 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-dark: #1a1a1a;
    --text-light: #666666;
}

* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
}

/* Dynamic Background */
.background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f3f4f7 100%);
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #FF0080;
    animation-delay: 0s;
}

.shape-2 {
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: #40E0D0;
    animation-delay: -2s;
}

.shape-3 {
    top: 40%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: #FF8C00;
    animation-delay: -4s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Glass Card */
.container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 600px;
    width: 90%;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

/* Logo */
.logo {
    width: 140px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    animation: fadeInDown 1s ease-out;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    margin: 0.5rem 0;
    background: linear-gradient(to right, #FF0080, #FF8C00, #40E0D0);
    -webkit-background-clip: text;
    background-size: 200% auto;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s linear infinite;
    font-weight: 700;
    letter-spacing: -1px;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Form */
.input-group {
    display: flex;
    background: white;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.input-group:focus-within {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

input[type="email"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
}

button {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 0, 128, 0.4);
}

/* Socials */
.social-icons {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px) rotate(10deg);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 500px) {
    .container {
        padding: 2rem;
        width: 95%;
    }

    h1 {
        font-size: 2.5rem;
    }

    .input-group {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 10px;
    }

    input[type="email"] {
        width: 100%;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        text-align: center;
    }

    button {
        width: 100%;
    }
}