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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFF0F5 0%, #F0F8FF 50%, #FFF5F8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

.wrapper {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.balloon {
    position: fixed;
    font-size: 60px;
    opacity: 1;
    animation: float 4s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.balloon-1 {
    top: 10%;
    right: 8%;
    color: #FF6B9D;
}

.balloon-2 {
    top: 20%;
    left: 5%;
    color: #4FC3F7;
    animation-delay: 1s;
    font-size: 50px;
}

.balloon-3 {
    bottom: 15%;
    right: 12%;
    color: #FF8FAB;
    animation-delay: 2s;
    font-size: 45px;
}

.balloon-4 {
    bottom: 25%;
    left: 8%;
    color: #64B5F6;
    animation-delay: 0.5s;
    font-size: 55px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro h1 {
    font-size: 22px;
    font-weight: 600;
    color: #FF6B9D;
    margin-bottom: 10px;
}

.intro p {
    font-size: 14px;
    color: #64B5F6;
    font-weight: 400;
}

.form-card {
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 36px;

}

.field {
    margin-bottom: 28px;
    position: relative;
}

.field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #FF6B9D;
    margin-bottom: 10px;
}

.field input {
    width: 100%;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    outline: none;
    transition: all 0.3s ease;
}

.field input::placeholder {
    color: #000;
    font-weight: 300;
}

.field input:focus {
    border-bottom-color: #40C4FF;
}

.field input:focus + .line {
    width: 100%;
}

.field:focus-within label {
    color: #40C4FF;
}

.submit-area {
    margin-top: 32px;
    text-align: center;
}

button {
    padding: 16px 48px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8FAB 50%, #4FC3F7 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.35);
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.45);
}

button:active {
    transform: translateY(0);
}

#status {
    margin-top: 20px;
}

#status p {
    font-size: 13px;
    color: #FF6B9D;
    padding: 14px 20px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 12px;
    display: inline-block;
}

.footer {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #64B5F6;
    font-weight: 400;
}

.footer span {
    color: #FF6B9D;
}

.grecaptcha-badge { 
    visibility: hidden; 
}

.status-icon {
    position: absolute; 
    right: 15px; 
    top: 14px; 
    font-size: 14px;
}

/* Footer Styling */
.app-footer {
    background-color: #f8f9fa; /* Light grey background */
    border-top: 1px solid #e9ecef;
    padding: 30px 0;
    margin-top: auto; /* Pushes footer to bottom if page is short */
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer-content p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
}

.parent-link {
    color: #FF6B9D; /* Your Brand Pink */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.parent-link:hover {
    color: #e04f80;
    text-decoration: underline;
}

.footer-links {
    font-size: 13px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #333;
}

.separator {
    color: #ccc;
}
