body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #34e5f9, #3b54de);
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    text-align: center;
}

.header-container h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header-container p {
    color: #eee;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.google-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.google-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.google-form input[type="text"] {
    width: 300px;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    background: white;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.google-form input[type="text"]:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    outline: none;
}

.google-form input[type="submit"] {
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    background: white;
    color: #3b54de;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.google-form input[type="submit"]:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-link {
    text-align: center;
    margin-bottom: 20px;
}

.back-link a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    opacity: 0.8;
    transition: color 0.2s ease;
}

.back-link a:hover {
    color: #f8f9fa;
    opacity: 1;
}

footer {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #eee;
    margin-top: auto;
}