/* RESET AND BASE */
* { box-sizing: border-box; }
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

/* THE PINK GRADIENT BACKGROUND */
.background-melt {
    background: linear-gradient(180deg, #FADADD 0%, #FFFFFF 100%);
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.floating-hero {
    width: 100%;
    max-width: 450px; 
    padding: 4rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* THE LOGO AND DYNAMIC SHADOW */
.logo-holder {
    width: 100%;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo-img {
    width: 85%;            
    max-width: 320px;      
    height: auto;
    z-index: 2;
    animation: floatingLogo 4s ease-in-out infinite;
}

/* THE "FLOOR" SHADOW FROM YOUR PICTURE */
.logo-holder::after {
    content: "";
    position: absolute;
    bottom: -15px; 
    width: 160px;  
    height: 15px;  
    background: rgba(139, 90, 100, 0.4); 
    border-radius: 50%; 
    filter: blur(12px); 
    animation: shadowScale 4s ease-in-out infinite;
}

/* THE SIGNUP BOX AND TEXT */
.brand-tagline {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.vip-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 25px;
    border: 1px solid #FADADD;
    box-shadow: 0 15px 35px rgba(217, 134, 149, 0.1);
    width: 100%;
}

.vip-title { color: #D98695; margin-bottom: 20px; }

input {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: 1px solid #eee;
    margin-bottom: 15px;
    outline: none;
}

button {
    background-color: #D98695;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    width: 100%;
    font-weight: 600;
}

/* ANIMATIONS */
@keyframes floatingLogo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-25px); } 
    100% { transform: translateY(0px); }
}

@keyframes shadowScale {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(0.6); opacity: 0.2; } 
    100% { transform: scale(1); opacity: 0.5; }
}
