* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
    background: #f8fbfa;
    color: #333;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background animated shapes */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.8;
    animation: float 20s infinite ease-in-out alternate;
}

.green-blob {
    width: 500px;
    height: 500px;
    background: rgba(96, 175, 4, 0.2); /* Logo green */
    top: -100px;
    right: -100px;
}

.brown-blob {
    width: 600px;
    height: 600px;
    background: rgba(140, 74, 30, 0.15); /* Logo brown */
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
    100% { transform: translate(-30px, -50px) scale(0.9); }
}

/* Glasscard container */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    perspective: 1000px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 60px 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    text-align: center;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo styling */
.logo-container {
    margin-bottom: 25px;
}

.logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    /* Optional shadow to blend better if it's on a white box block */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
}

/* Typography */
.title {
    font-size: 3rem;
    font-weight: 700;
    color: #213317;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.15rem;
    color: #55624c;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
}




/* Responsiveness */
@media (max-width: 600px) {
    .glass-card {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}
