
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #25d366;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#wcc-form {
    padding: 24px;
    width: 100% !important;
    height: 100vh;
    background: linear-gradient(160deg, #25d366 0%, #075E54 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    box-sizing: border-box;
}

#wcc-form select,
#wcc-form input {
    padding: 16px;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    outline: none;
    background: white;
    color: #000;
    width: 100%;
    box-sizing: border-box;
}

#wcc-form button {
    background: #fff;
    color: #25d366;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

#wcc-form button:hover {
    background: #d4fce3;
}
