@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

:root {
    --primary-color: #A0C4FF;
    --secondary-color: #BDB2FF;
    --accent-color: #FFC6FF;
    --text-color: #2D3748;
    --bg-color: #FDFFFC;
    --card-bg: rgba(255, 255, 255, 0.8);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(circle at top left, #FDFFFC, #CAFFBF);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin: 20px;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

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

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

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

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFADAD, #FFD6A5, #FDFFB6, #CAFFBF, #9BF6FF, #A0C4FF, #BDB2FF, #FFC6FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: rainbow 5s ease infinite;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

p.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #4A5568;
}

.btn-magic {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(160, 196, 255, 0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-magic:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(160, 196, 255, 0.6);
}

.btn-magic:active {
    transform: translateY(-1px);
}

.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    font-size: 0.95rem;
    color: #718096;
}

.contact-info h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    width: 20px;
    text-align: center;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .container {
        padding: 1.5rem;
    }
}

/* Round Navigation Button */
.btn-round {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
}

.btn-round:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--secondary-color);
}

/* Login Form Styles */
.login-input {
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid #E2E8F0;
    font-size: 1rem;
    outline: none;
    width: 200px;
    transition: border-color 0.3s;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.login-input:focus {
    border-color: var(--secondary-color);
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.error-shake {
    animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
    border-color: #FF6B6B;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}